Skip to content

Commit 10901e2

Browse files
committed
Fixed test_raw_format_validation
1 parent 9d5c6e4 commit 10901e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/tests/fq/s3/test_insert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ def test_raw_format_validation(self, kikimr, s3, client, unique_prefix):
586586
query_id = client.create_query("simple", sql, type=fq.QueryContent.QueryType.ANALYTICS).result.query_id
587587
client.wait_query_status(query_id, fq.QueryMeta.FAILED)
588588
issues = str(client.describe_query(query_id).result.query.issue)
589-
assert "Expected data or optional of data" in issues, "Incorrect Issues: " + issues
589+
assert "Only column with primitive type allowed for raw format" in issues, "Incorrect Issues: " + issues
590590

591591
def get_insert_test_query(self, insert_path: str):
592592
sql = f"INSERT INTO {insert_path} WITH (FORMAT = \"parquet\") SELECT\n"

0 commit comments

Comments
 (0)