We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d674fd commit 302c087Copy full SHA for 302c087
โtests/sqllogictests/suites/query/show_variables.testโ
@@ -1,24 +1,32 @@
1
statement ok
2
set variable (a, b) = (select 3, 'x')
3
4
+onlyif http
5
query TTT
6
show variables
7
----
8
a 3 UInt8
9
b 'x' String
10
11
12
13
show variables where name like 'a'
14
15
16
-
17
18
19
show variables where type = 'UInt8'
20
21
22
23
24
25
show variables where value = '\'x\''
26
27
28
+
29
+query TTT
30
+select name, value, type from show_variables() where name='a';
31
+----
32
+a 3 UInt8
0 commit comments