@@ -31,6 +31,10 @@ def setup(self, request):
31
31
binary_paths = binary_paths ,
32
32
# uncomment for 64 datetime in tpc-h/tpc-ds
33
33
# extra_feature_flags={"enable_table_datetime64": True},
34
+
35
+ column_shard_config = {
36
+ 'disabled_on_scheme_shard' : False ,
37
+ },
34
38
)
35
39
36
40
self .cluster = KiKiMR (self .config )
@@ -56,7 +60,7 @@ def get_command_prefix_log(self, subcmds: list[str], path: str) -> list[str]:
56
60
+ ["--path" , path ]
57
61
)
58
62
59
- @pytest .mark .parametrize ("store_type" , ["row" ])
63
+ @pytest .mark .parametrize ("store_type" , ["row" , "column" ])
60
64
def test_log (self , store_type ):
61
65
timeout_scale = 60
62
66
@@ -122,13 +126,13 @@ def test_log(self, store_type):
122
126
select .wait ()
123
127
124
128
@pytest .mark .skip (reason = "Too huge logs" )
125
- @pytest .mark .parametrize ("mode " , ["row" ])
126
- def test_simple_queue (self , mode : str ):
127
- with Workload (f"grpc://localhost:{ self .cluster .nodes [1 ].grpc_port } " , "/Root" , 180 , mode ) as workload :
129
+ @pytest .mark .parametrize ("store_type " , ["row" , "column " ])
130
+ def test_simple_queue (self , store_type : str ):
131
+ with Workload (f"grpc://localhost:{ self .cluster .nodes [1 ].grpc_port } " , "/Root" , 180 , store_type ) as workload :
128
132
for handle in workload .loop ():
129
133
handle ()
130
134
131
- @pytest .mark .parametrize ("store_type" , ["row" ])
135
+ @pytest .mark .parametrize ("store_type" , ["row" , "column" ])
132
136
def test_kv (self , store_type ):
133
137
init_command_prefix = [
134
138
yatest .common .binary_path (os .getenv ("YDB_CLI_BINARY" )),
@@ -198,7 +202,7 @@ def test_kv(self, store_type):
198
202
yatest .common .execute (init_command , wait = True , stdout = self .output_f , stderr = self .output_f )
199
203
yatest .common .execute (run_command , wait = True , stdout = self .output_f , stderr = self .output_f )
200
204
201
- @pytest .mark .parametrize ("store_type" , ["row" ])
205
+ @pytest .mark .parametrize ("store_type" , ["row" , "column" ])
202
206
def test_tpch1 (self , store_type ):
203
207
init_command = [
204
208
yatest .common .binary_path (os .getenv ("YDB_CLI_BINARY" )),
@@ -253,7 +257,7 @@ def test_tpch1(self, store_type):
253
257
yatest .common .execute (run_command , wait = True , stdout = self .output_f , stderr = self .output_f )
254
258
255
259
@pytest .mark .skip (reason = "Not stabilized yet" )
256
- @pytest .mark .parametrize ("store_type" , ["row" ])
260
+ @pytest .mark .parametrize ("store_type" , ["row" , "column" ])
257
261
def test_tpcds1 (self , store_type ):
258
262
init_command = [
259
263
yatest .common .binary_path (os .getenv ("YDB_CLI_BINARY" )),
0 commit comments