diff options
author | aneporada <aneporada@ydb.tech> | 2023-09-17 22:29:55 +0300 |
---|---|---|
committer | aneporada <aneporada@ydb.tech> | 2023-09-17 22:46:51 +0300 |
commit | 82e7718a0acb22420228caec08d061b98e56c5ff (patch) | |
tree | 65cc8d94a2d408f4cfd039fe7c6885d3b2c6a96c | |
parent | 94f8206d1e8df48d49de163a4347b1feab48a7e0 (diff) | |
download | ydb-82e7718a0acb22420228caec08d061b98e56c5ff.tar.gz |
Add sql yt_native_file ForceBlocks tests
-rw-r--r-- | ydb/library/yql/tests/common/test_framework/yql_utils.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ydb/library/yql/tests/common/test_framework/yql_utils.py b/ydb/library/yql/tests/common/test_framework/yql_utils.py index b26aa00e65..40ab109c0a 100644 --- a/ydb/library/yql/tests/common/test_framework/yql_utils.py +++ b/ydb/library/yql/tests/common/test_framework/yql_utils.py @@ -429,6 +429,13 @@ def is_xfail(cfg): return False +def is_skip_forceblocks(cfg): + for item in cfg: + if item[0] == 'skip_forceblocks': + return True + return False + + def is_canonize_peephole(cfg): for item in cfg: if item[0] == 'canonize_peephole': |