Skip to content

Commit 9f7ab8c

Browse files
committed
Fix tests
1 parent ae3d983 commit 9f7ab8c

File tree

4 files changed

+41
-5
lines changed

4 files changed

+41
-5
lines changed

tests/queries/0_stateless/02940_variant_text_deserialization.reference

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ FixedString
164164
"abcd","abcd"
165165
Bool
166166
\N,\N
167-
"Truee",\N
167+
"truee",\N
168168
true,true
169169
Integers
170170
\N,\N
@@ -336,7 +336,7 @@ string \N
336336
abcd abcd
337337
Bool
338338
\N \N
339-
Truee \N
339+
truee \N
340340
true true
341341
Integers
342342
\N \N

tests/queries/0_stateless/03156_dynamic_type_concurrent_inserts.reference

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Date 12000 10001
33
Float64 12000 10000
44
Int64 10000 10000
55
Map(UInt64, String) 10000 10000
6-
String 10000 10000
7-
UInt64 4000 4000
6+
String 12000 10000
7+
UInt64 2000 2000

tests/queries/0_stateless/03156_dynamic_type_concurrent_inserts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
44
# shellcheck source=../shell_config.sh
55
. "$CURDIR"/../shell_config.sh
66

7-
$CLICKHOUSE_CLIENT --allow_experimental_dynamic_type=1 -q "CREATE TABLE test_cc (d Dynamic) ENGINE = Memory"
7+
$CLICKHOUSE_CLIENT --allow_experimental_dynamic_type=1 -q "CREATE OR REPLACE TABLE test_cc (d Dynamic) ENGINE = Memory"
88

99

1010
$CLICKHOUSE_CLIENT --allow_experimental_dynamic_type=1 -q "INSERT INTO test_cc SELECT number::Int64 AS d FROM numbers(10000) SETTINGS max_threads=1,max_insert_threads=1" &
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,37 @@
1+
a
2+
a
3+
a
4+
b
5+
xx
6+
xx
7+
\N
8+
\N
9+
\N
10+
\N
11+
\N
12+
\N
13+
\N
14+
\N
15+
\N
16+
\N
17+
\N
18+
\N
19+
---
20+
4
121
xx
22+
xx
23+
a 2020-01-01 00:00:00.000
24+
a 2020-01-01 10:10:10.000
25+
a 2020-01-01 10:10:10.110
26+
a 1
27+
a 1
28+
a 1
29+
a a
30+
a a
31+
a b
32+
a \N
33+
a \N
34+
a \N
35+
a \N
36+
a \N
37+
z a

0 commit comments

Comments
 (0)