Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better test result normalization YQL-17397 #804

Merged
merged 1 commit into from
Dec 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ydb/library/yql/tests/sql/dq_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ def normalize_res(res, sort):
for data in r['Write']:
if sort and 'Data' in data:
data['Data'] = sorted(data['Data'])
if 'Ref' in data:
data['Ref'] = []
data['Truncated'] = True
if 'Data' in data and len(data['Data']) == 0:
del data['Data']
# return res # TODO: uncomment it in future

program_sql = os.path.join(DATA_PATH, suite, '%s.sql' % case)
with codecs.open(program_sql, encoding='utf-8') as program_file_descr:
Expand Down
Loading