Skip to content

Commit

Permalink
test: fix transaction-abort test
Browse files Browse the repository at this point in the history
Signed-off-by: usamoi <[email protected]>
  • Loading branch information
usamoi committed Mar 11, 2024
1 parent 2f9a378 commit fddf3a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/transaction/test.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ CREATE TABLE tests_transaction_t(val vector(3));
INSERT INTO tests_transaction_t (val) SELECT ARRAY[random(), random(), random()]::real[] FROM generate_series(1, 1000);

BEGIN;
CREATE INDEX ON t USING vectors (val vector_l2_ops);
CREATE INDEX ON tests_transaction_t USING vectors (val vector_l2_ops);
ABORT;

0 comments on commit fddf3a9

Please sign in to comment.