-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
alter_tenant
31 lines (28 loc) · 1.2 KB
/
alter_tenant
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
parse
ALTER TENANT 1 SET CLUSTER SETTING a = 3
----
ALTER TENANT 1 SET CLUSTER SETTING a = 3
ALTER TENANT 1 SET CLUSTER SETTING a = (3) -- fully parenthesized
ALTER TENANT 1 SET CLUSTER SETTING a = _ -- literals removed
ALTER TENANT 1 SET CLUSTER SETTING a = 3 -- identifiers removed
parse
ALTER TENANT ALL SET CLUSTER SETTING a = 3
----
ALTER TENANT ALL SET CLUSTER SETTING a = 3
ALTER TENANT ALL SET CLUSTER SETTING a = (3) -- fully parenthesized
ALTER TENANT ALL SET CLUSTER SETTING a = _ -- literals removed
ALTER TENANT ALL SET CLUSTER SETTING a = 3 -- identifiers removed
parse
ALTER TENANT 1 RESET CLUSTER SETTING a
----
ALTER TENANT 1 SET CLUSTER SETTING a = DEFAULT -- normalized!
ALTER TENANT 1 SET CLUSTER SETTING a = (DEFAULT) -- fully parenthesized
ALTER TENANT 1 SET CLUSTER SETTING a = DEFAULT -- literals removed
ALTER TENANT 1 SET CLUSTER SETTING a = DEFAULT -- identifiers removed
parse
ALTER TENANT ALL RESET CLUSTER SETTING a
----
ALTER TENANT ALL SET CLUSTER SETTING a = DEFAULT -- normalized!
ALTER TENANT ALL SET CLUSTER SETTING a = (DEFAULT) -- fully parenthesized
ALTER TENANT ALL SET CLUSTER SETTING a = DEFAULT -- literals removed
ALTER TENANT ALL SET CLUSTER SETTING a = DEFAULT -- identifiers removed