Skip to content

Commit 524a56f

Browse files
authored
tiny fix to an example in readme (#371)
1 parent ed93c14 commit 524a56f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@ player_udt_def = CreateTypeDefinition(
307307
)
308308
my_database.create_type("player_udt", definition=player_udt_def)
309309

310-
# Create a table and a vector index on it
311310
table_definition = (
312311
CreateTableDefinition.builder()
313312
.add_column("match_id", ColumnType.TEXT)
@@ -316,7 +315,6 @@ table_definition = (
316315
.add_partition_by(["match_id"])
317316
.build()
318317
)
319-
320318
udt_table = my_database.create_table("matches", definition=table_definition)
321319
```
322320

0 commit comments

Comments
 (0)