Fix tests

This commit is contained in:
Alexey Milovidov 2024-02-21 21:39:52 +01:00
parent d40a7e65aa
commit e0002635a8
3 changed files with 6 additions and 6 deletions

View File

@ -11,14 +11,14 @@ CREATE ROLE `r2_01293@%.myhost.com`
CREATE ROLE `r2_01293@%.myhost.com`
-- settings
CREATE ROLE r1_01293
CREATE ROLE r2_01293 SETTINGS PROFILE default
CREATE ROLE r2_01293 SETTINGS PROFILE `default`
CREATE ROLE r3_01293 SETTINGS max_memory_usage = 5000000
CREATE ROLE r4_01293 SETTINGS max_memory_usage MIN 5000000
CREATE ROLE r5_01293 SETTINGS max_memory_usage MAX 5000000
CREATE ROLE r6_01293 SETTINGS max_memory_usage CONST
CREATE ROLE r7_01293 SETTINGS max_memory_usage WRITABLE
CREATE ROLE r8_01293 SETTINGS max_memory_usage = 5000000 MIN 4000000 MAX 6000000 CONST
CREATE ROLE r9_01293 SETTINGS PROFILE default, max_memory_usage = 5000000 WRITABLE
CREATE ROLE r9_01293 SETTINGS PROFILE `default`, max_memory_usage = 5000000 WRITABLE
CREATE ROLE r1_01293 SETTINGS readonly = 1
CREATE ROLE r2_01293 SETTINGS readonly = 1
CREATE ROLE r3_01293

View File

@ -30,10 +30,10 @@ custom_f \'word\'
--- compound identifier ---
test String
custom_compound.identifier.v1 \'test\'
CREATE SETTINGS PROFILE s1_01418 SETTINGS custom_compound.identifier.v2 = 100
CREATE SETTINGS PROFILE `s1_01418` SETTINGS custom_compound.identifier.v2 = 100
--- null type ---
\N Nullable(Nothing)
custom_null NULL
\N Nullable(Nothing)
custom_null NULL
CREATE SETTINGS PROFILE s2_01418 SETTINGS custom_null = NULL
CREATE SETTINGS PROFILE `s2_01418` SETTINGS custom_null = NULL

View File

@ -1,4 +1,4 @@
SELECT f(x, y -> z)
SELECT f(x, (y -> z))
SELECT f((x, y) -> z)
SELECT f((x, y) -> z)
SELECT f(x, (x, y) -> z)
SELECT f(x, ((x, y) -> z))