We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c9cbc commit ae99f7dCopy full SHA for ae99f7d
1 file changed
upgrade_guide/README.md
@@ -28,7 +28,7 @@ try (CqlSession session = new CqlSessionBuilder().withLocalDatacenter("datacente
28
session.execute("DROP KEYSPACE IF EXISTS test");
29
session.execute("CREATE KEYSPACE test WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1}");
30
session.execute("CREATE TABLE test.foo(i int primary key, j vector<float, 3>)");
31
- session.execute("CREAT CUSTOM INDEX ann_index ON test.foo(j) USING 'StorageAttachedIndex'");
+ session.execute("CREATE CUSTOM INDEX ann_index ON test.foo(j) USING 'StorageAttachedIndex'");
32
session.execute("INSERT INTO test.foo (i, j) VALUES (1, [8, 2.3, 58])");
33
session.execute("INSERT INTO test.foo (i, j) VALUES (2, [1.2, 3.4, 5.6])");
34
session.execute("INSERT INTO test.foo (i, j) VALUES (5, [23, 18, 3.9])");
0 commit comments