Skip to content

Commit

Permalink
Better test result normalization YQL-17397
Browse files Browse the repository at this point in the history
  • Loading branch information
resetius committed Dec 29, 2023
1 parent cac5d94 commit 47a0116
Showing 1 changed file with 6 additions and 0 deletions.
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

0 comments on commit 47a0116

Please sign in to comment.