1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# name: test/sql/function/autocomplete/pragma.test
# description: Test sql_auto_complete
# group: [autocomplete]
require autocomplete
# main keywords
query II
SELECT suggestion, suggestion_start FROM sql_auto_complete('PRAGMA show_t') LIMIT 1;
----
show_tables 7
# main keywords
query II
SELECT suggestion, suggestion_start FROM sql_auto_complete('PRAGMA enable_che') LIMIT 1;
----
enable_checkpoint_on_shutdown 7
# main keywords
query II
SELECT suggestion, suggestion_start FROM sql_auto_complete('PRAGMA disable_che') LIMIT 1;
----
disable_checkpoint_on_shutdown 7
# main keywords
query II
SELECT suggestion, suggestion_start FROM sql_auto_complete('PRAGMA thre') LIMIT 1;
----
threads 7
|