aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yql/tests
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.com>2025-02-11 21:02:56 +0300
committerudovichenko-r <udovichenko-r@yandex-team.com>2025-02-11 21:28:35 +0300
commitcfdb74513d44f14e37c64b3202896a5768175900 (patch)
treeba5e5238f923ce0f3afde786e203899475050099 /yt/yql/tests
parent68f130528d23665ea395f02063b572479fec7765 (diff)
downloadydb-cfdb74513d44f14e37c64b3202896a5768175900.tar.gz
Remove column_group settings after graph rewrites
commit_hash:c7d005211f2f70b8e4bac2135ab5118312ec8b27
Diffstat (limited to 'yt/yql/tests')
-rw-r--r--yt/yql/tests/sql/suites/column_group/input2.txt4
-rw-r--r--yt/yql/tests/sql/suites/column_group/respull.cfg2
-rw-r--r--yt/yql/tests/sql/suites/column_group/respull.sql14
3 files changed, 20 insertions, 0 deletions
diff --git a/yt/yql/tests/sql/suites/column_group/input2.txt b/yt/yql/tests/sql/suites/column_group/input2.txt
new file mode 100644
index 0000000000..65949ea745
--- /dev/null
+++ b/yt/yql/tests/sql/suites/column_group/input2.txt
@@ -0,0 +1,4 @@
+{"key"="075";"subkey"="1";"value"="abc"};
+{"key"="800";"subkey"="2";"value"="ddd"};
+{"key"="020";"subkey"="3";"value"="q"};
+{"key"="150";"subkey"="4";"value"="qzz"};
diff --git a/yt/yql/tests/sql/suites/column_group/respull.cfg b/yt/yql/tests/sql/suites/column_group/respull.cfg
new file mode 100644
index 0000000000..c3fd8a0bcd
--- /dev/null
+++ b/yt/yql/tests/sql/suites/column_group/respull.cfg
@@ -0,0 +1,2 @@
+in Input input2.txt
+providers yt
diff --git a/yt/yql/tests/sql/suites/column_group/respull.sql b/yt/yql/tests/sql/suites/column_group/respull.sql
new file mode 100644
index 0000000000..7d3eef6808
--- /dev/null
+++ b/yt/yql/tests/sql/suites/column_group/respull.sql
@@ -0,0 +1,14 @@
+-- YQL-19570
+-- Expected no column_group in YtMap outputs
+USE plato;
+
+pragma yt.ColumnGroupMode="perusage";
+pragma yt.OptimizeFor="lookup";
+
+SELECT
+ key as key,
+ "" as subkey,
+ "value:" || value as value
+FROM Input
+WHERE key < "050"
+LIMIT 1;