Skip to content

Commit 7d84cc5

Browse files
committed
add sample.sql
1 parent 9f84037 commit 7d84cc5

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

performance/sample_dataset.sql

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
CREATE TABLE big_columns_example
2+
(
3+
-- Float64 columns
4+
float_col_1 Float64,
5+
float_col_2 Float64,
6+
float_col_3 Float64,
7+
float_col_4 Float64,
8+
float_col_5 Float64,
9+
float_col_6 Float64,
10+
float_col_7 Float64,
11+
float_col_8 Float64,
12+
float_col_9 Float64,
13+
float_col_10 Float64,
14+
15+
-- String columns
16+
str_col_1 String,
17+
str_col_2 String,
18+
str_col_3 String,
19+
str_col_4 String,
20+
str_col_5 String,
21+
str_col_6 String,
22+
str_col_7 String,
23+
str_col_8 String,
24+
str_col_9 String,
25+
str_col_10 String,
26+
27+
-- Int64 columns
28+
int_col_1 Int64,
29+
int_col_2 Int64,
30+
int_col_3 Int64,
31+
int_col_4 Int64,
32+
int_col_5 Int64,
33+
int_col_6 Int64,
34+
int_col_7 Int64,
35+
int_col_8 Int64,
36+
int_col_9 Int64,
37+
int_col_10 Int64
38+
)
39+
ENGINE = MergeTree
40+
ORDER BY tuple();

0 commit comments

Comments
 (0)