We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c445e1 commit bb95e3cCopy full SHA for bb95e3c
golang/gocql/connection-sigv4/main.go
@@ -78,7 +78,9 @@ func main() {
78
79
// Perform Query
80
var keyspaceName string
81
- iter := cassandraSession.Query("SELECT keyspace_name FROM system_schema.keyspaces;").Iter()
+ query := cassandraSession.Query("SELECT keyspace_name FROM system_schema.keyspaces;")
82
+ query.Idempotent(true)
83
+ iter := query.Iter()
84
85
defer iter.Close()
86
0 commit comments