diff options
author | vvvv <vvvv@yandex-team.com> | 2025-01-20 16:38:10 +0300 |
---|---|---|
committer | vvvv <vvvv@yandex-team.com> | 2025-01-20 17:00:30 +0300 |
commit | 6b3e7777077b0112e088056abc7093db18d7bec0 (patch) | |
tree | dd79c706aadcb821936dfcf375a58b6adb2d00fd /yql/essentials/tests/common/test_framework/test_file_common.py | |
parent | b6a2451a8ed4ad6c210751fcf6ae3d28998235f1 (diff) | |
download | ydb-6b3e7777077b0112e088056abc7093db18d7bec0.tar.gz |
Introduced TableSource wrapper and Blocks/Peephole mode for minirun tests
init
commit_hash:22d9a4470f726b8efcd86aaf043bfa5552c2b35e
Diffstat (limited to 'yql/essentials/tests/common/test_framework/test_file_common.py')
-rw-r--r-- | yql/essentials/tests/common/test_framework/test_file_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/tests/common/test_framework/test_file_common.py b/yql/essentials/tests/common/test_framework/test_file_common.py index 37d008759f..3bd6b7af1d 100644 --- a/yql/essentials/tests/common/test_framework/test_file_common.py +++ b/yql/essentials/tests/common/test_framework/test_file_common.py @@ -26,7 +26,7 @@ def get_gateways_config(http_files, yql_http_file_server, force_blocks=False, is schema.Pattern = 'http_test://(.*)' schema.TargetUrl = yql_http_file_server.compose_http_link('$1') if force_blocks: - config_message.SqlCore.TranslationFlags.extend(['EmitAggApply']) + config_message.SqlCore.TranslationFlags.extend(['EmitAggApply', 'EmitTableSource']) flags = config_message.YqlCore.Flags.add() flags.Name = 'UseBlocks' if is_hybrid: |