Skip to content

Commit

Permalink
Reverted test schema changes [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Aug 5, 2024
1 parent b36ce70 commit a93ce8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func TestPgx(t *testing.T) {
panic(err)
}

_, err = conn.Exec(ctx, "CREATE TABLE pgx_items (id bigserial, embedding vector(3), half_embedding halfvec(3), binary_embedding bit(3), sparse_embedding sparsevec(3), score float8)")
_, err = conn.Exec(ctx, "CREATE TABLE pgx_items (id bigserial PRIMARY KEY, embedding vector(3), half_embedding halfvec(3), binary_embedding bit(3), sparse_embedding sparsevec(3))")
if err != nil {
panic(err)
}
Expand Down

0 comments on commit a93ce8a

Please sign in to comment.