mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 11:02:08 +00:00
Fixed tests
This commit is contained in:
parent
24c3fe2d64
commit
7a6f282765
@ -225,11 +225,11 @@ def test_introspection():
|
|||||||
["R2", "local directory"]])
|
["R2", "local directory"]])
|
||||||
|
|
||||||
assert instance.query(
|
assert instance.query(
|
||||||
"SELECT * from system.grants WHERE user_name IN ('A', 'B') OR role_name IN ('R1', 'R2') ORDER BY user_name, role_name, access_type, grant_option") == \
|
"SELECT * from system.grants WHERE user_name IN ('A', 'B') OR role_name IN ('R1', 'R2') ORDER BY user_name, role_name, access_type, database, table, column, is_partial_revoke, grant_option") == \
|
||||||
TSV([["A", "\\N", "SELECT", "test", "table", "\\N", 0, 0],
|
TSV([["A", "\\N", "SELECT", "test", "table", "\\N", 0, 0],
|
||||||
["B", "\\N", "CREATE", "\\N", "\\N", "\\N", 0, 1],
|
["B", "\\N", "CREATE", "\\N", "\\N", "\\N", 0, 1],
|
||||||
["\\N", "R2", "SELECT", "test", "table", "\\N", 0, 0],
|
["\\N", "R2", "SELECT", "test", "table", "x", 1, 0],
|
||||||
["\\N", "R2", "SELECT", "test", "table", "x", 1, 0]])
|
["\\N", "R2", "SELECT", "test", "table", "\\N", 0, 0]])
|
||||||
|
|
||||||
assert instance.query(
|
assert instance.query(
|
||||||
"SELECT * from system.role_grants WHERE user_name IN ('A', 'B') OR role_name IN ('R1', 'R2') ORDER BY user_name, role_name, granted_role_name") == \
|
"SELECT * from system.role_grants WHERE user_name IN ('A', 'B') OR role_name IN ('R1', 'R2') ORDER BY user_name, role_name, granted_role_name") == \
|
||||||
|
@ -7,9 +7,9 @@ CREATE TABLE test_collate (x UInt32, s Nullable(String)) ENGINE=Memory();
|
|||||||
INSERT INTO test_collate VALUES (1, 'Ё'), (1, 'ё'), (1, 'а'), (1, null), (2, 'А'), (2, 'я'), (2, 'Я'), (2, null);
|
INSERT INTO test_collate VALUES (1, 'Ё'), (1, 'ё'), (1, 'а'), (1, null), (2, 'А'), (2, 'я'), (2, 'Я'), (2, null);
|
||||||
|
|
||||||
SELECT 'Order by without collate';
|
SELECT 'Order by without collate';
|
||||||
SELECT * FROM test_collate ORDER BY s;
|
SELECT * FROM test_collate ORDER BY s, x;
|
||||||
SELECT 'Order by with collate';
|
SELECT 'Order by with collate';
|
||||||
SELECT * FROM test_collate ORDER BY s COLLATE 'ru';
|
SELECT * FROM test_collate ORDER BY s COLLATE 'ru', x;
|
||||||
|
|
||||||
SELECT 'Order by tuple without collate';
|
SELECT 'Order by tuple without collate';
|
||||||
SELECT * FROM test_collate ORDER BY x, s;
|
SELECT * FROM test_collate ORDER BY x, s;
|
||||||
|
Loading…
Reference in New Issue
Block a user