Files
email-tracker/external/duckdb/test/sql/transactions/transaction_errors.test
2025-10-24 19:21:19 -05:00

25 lines
350 B
SQL

# name: test/sql/transactions/transaction_errors.test
# description: Error conditions of transactions
# group: [transactions]
# nothing to rollback
statement error
ROLLBACK;
----
# nothing to commit
statement error
COMMIT;
----
statement ok
BEGIN;
# cannot start a transaction in a transaction
statement error
BEGIN;
----
statement ok
ROLLBACK;