Skip to content

Commit de3ad97

Browse files
Fix a test after randomization of table engines in the check with parallel replicas
1 parent bb07aa5 commit de3ad97

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
DROP TABLE IF EXISTS enum;
22

3-
SET output_format_pretty_color=1;
3+
SET output_format_pretty_color=1, output_format_pretty_;
44
CREATE TABLE enum (x Enum8('Hello' = -100, '\\' = 0, '\t\\t' = 111), y UInt8) ENGINE = TinyLog;
55
INSERT INTO enum (y) VALUES (0);
6-
SELECT * FROM enum ORDER BY x, y FORMAT PrettyCompact;
6+
SELECT * FROM enum ORDER BY x, y FORMAT PrettyCompactMonoBlock;
77
INSERT INTO enum (x) VALUES ('\\');
8-
SELECT * FROM enum ORDER BY x, y FORMAT PrettyCompact;
8+
SELECT * FROM enum ORDER BY x, y FORMAT PrettyCompactMonoBlock;
99
INSERT INTO enum (x) VALUES ('\t\\t');
10-
SELECT * FROM enum ORDER BY x, y FORMAT PrettyCompact;
11-
SELECT x, y, toInt8(x), toString(x) AS s, CAST(s AS Enum8('Hello' = -100, '\\' = 0, '\t\\t' = 111)) AS cast FROM enum ORDER BY x, y FORMAT PrettyCompact;
10+
SELECT * FROM enum ORDER BY x, y FORMAT PrettyCompactMonoBlock;
11+
SELECT x, y, toInt8(x), toString(x) AS s, CAST(s AS Enum8('Hello' = -100, '\\' = 0, '\t\\t' = 111)) AS cast FROM enum ORDER BY x, y FORMAT PrettyCompactMonoBlock;
1212

1313
DROP TABLE enum;

0 commit comments

Comments
 (0)