File: 412_pragma.sql

package info (click to toggle)
sqlfmt 0.29.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,580 kB
  • sloc: python: 10,007; sql: 5,626; makefile: 39
file content (48 lines) | stat: -rw-r--r-- 1,239 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-- source: https://duckdb.org/docs/configuration/pragmas.html
PRAGMA collations;
SET threads = 4;
SET default_collation = 'nocase';
SET default_null_order = 'NULLS_FIRST';
SET default_null_order = 'NULLS_LAST_ON_ASC_FIRST_ON_DESC';
PRAGMA default_collation = 'nocase';
PRAGMA default_null_order = 'NULLS_FIRST';
PRAGMA default_null_order = 'NULLS_LAST_ON_ASC_FIRST_ON_DESC';
PRAGMA order_by_non_integer_literal = true;
PRAGMA version;
CALL pragma_version();
PRAGMA enable_progress_bar;
PRAGMA explain_output = 'physical_only';
PRAGMA table_info('table_name');
CALL pragma_table_info('table_name');
)))))__SQLFMT_OUTPUT__(((((
-- source: https://duckdb.org/docs/configuration/pragmas.html
pragma collations
;
set threads = 4
;
set default_collation = 'nocase'
;
set default_null_order = 'NULLS_FIRST'
;
set default_null_order = 'NULLS_LAST_ON_ASC_FIRST_ON_DESC'
;
pragma default_collation = 'nocase'
;
pragma default_null_order = 'NULLS_FIRST'
;
pragma default_null_order = 'NULLS_LAST_ON_ASC_FIRST_ON_DESC'
;
pragma order_by_non_integer_literal = true
;
pragma version
;
call pragma_version()
;
pragma enable_progress_bar
;
pragma explain_output = 'physical_only'
;
pragma table_info('table_name')
;
call pragma_table_info('table_name')
;