should be it
This commit is contained in:
43
external/duckdb/test/sql/pragma/test_various_pragmas.test
vendored
Normal file
43
external/duckdb/test/sql/pragma/test_various_pragmas.test
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
# name: test/sql/pragma/test_various_pragmas.test
|
||||
# description: Test various PRAGMA functions
|
||||
# group: [pragma]
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_checkpoint_on_shutdown
|
||||
|
||||
statement ok
|
||||
PRAGMA disable_checkpoint_on_shutdown
|
||||
|
||||
statement ok
|
||||
PRAGMA verify_parallelism
|
||||
|
||||
statement ok
|
||||
PRAGMA disable_verify_parallelism
|
||||
|
||||
statement ok
|
||||
PRAGMA explain_output='all'
|
||||
|
||||
statement error
|
||||
PRAGMA explain_output='unknown'
|
||||
----
|
||||
<REGEX>:.*Not implemented Error.*unrecognized value.*
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_progress_bar
|
||||
|
||||
statement ok
|
||||
PRAGMA disable_progress_bar
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_print_progress_bar
|
||||
|
||||
statement ok
|
||||
PRAGMA disable_print_progress_bar
|
||||
|
||||
statement ok
|
||||
PRAGMA debug_checkpoint_abort='none'
|
||||
|
||||
statement error
|
||||
PRAGMA debug_checkpoint_abort='unknown'
|
||||
----
|
||||
<REGEX>:.*Not implemented Error.*unrecognized value.*
|
||||
Reference in New Issue
Block a user