scylladb / gocql

Package gocql implements a fast and robust ScyllaDB client for the Go programming language.

Home Page:https://docs.scylladb.com/stable/using-scylla/drivers/cql-drivers/scylla-go-driver.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot find the scyllacloud import

KadoBOT opened this issue · comments

I've been trying to use Scylla Cloud, but for some reason I'm not able to find the scyllacloud import.

Here's my go mod

module tempname

go 1.19

require (
	github.com/gocql/gocql v1.5.2
	github.com/scylladb/gocqlx/v2 v2.8.0
)


replace (
    github.com/gocql/gocql => github.com/scylladb/gocql v1.8.0
)

and the import:

import (
	"github.com/gocql/gocql"
	"github.com/gocql/gocql/scyllacloud"
	"github.com/scylladb/gocqlx/v2"
)

I just ran into this.

I had to change replace to:

replace github.com/gocql/gocql => github.com/scylladb/gocql v1.7.3

Then it works.

Could this be related to #110 ?