aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.com>2024-11-23 22:29:07 +0300
committerudovichenko-r <udovichenko-r@yandex-team.com>2024-11-23 22:43:39 +0300
commit8b9f13e29dea8f76f11579aae5344ac571d5e604 (patch)
tree0449b096aa6444a36ba8cc5a3b3c64e0e7b94ed1 /yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql
parent284518c9e820058795b9e7cc44ff26b25f3f455b (diff)
downloadydb-8b9f13e29dea8f76f11579aae5344ac571d5e604.tar.gz
Check custom error in xfail tests. Remove canonization from dq/hybrid tests
1. xfail тесты теперь должны содержать спец комментарий `custom error` с ожидаемым текстом ошибки 2. Все suites для xfail размечены спец. коментариями, некоторые тесты разбиты на несколько 3. Включены тесты с Python и Javascript udf для yt провайдера и переканонизированы (были отключены в github) 4. Для тяжелых xfail тестов аналогично убрана канонизация и включена проверка по спец. коментарию 5. Из dq_file/hybrid тестов убрана канонизация. Осталась только кросс-проверка результатов с yqlrun и блочным режимом 6. В dqrun теперь используется exception_policy вместо fail_policy (для корректной выдачи ошибок в тестах) commit_hash:a92b3835f86b0c01225e81e3f28bb6d11d8d67a3
Diffstat (limited to 'yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql')
-rw-r--r--yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql b/yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql
index fe58dae84c..b60c6bb81f 100644
--- a/yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql
+++ b/yql/essentials/tests/sql/suites/insert_monotonic/non_existing_fail.sql
@@ -1,5 +1,6 @@
+/* custom error:Insert with "monotonic_keys" setting cannot be used with a non-existent table*/
USE plato;
INSERT INTO Output WITH MONOTONIC_KEYS
SELECT 1 as key
-ORDER BY key; \ No newline at end of file
+ORDER BY key;