aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/bigdate/presort.sql
diff options
context:
space:
mode:
authorMaxim Yurchuk <maxim-yurchuk@ydb.tech>2024-11-20 17:37:57 +0000
committerGitHub <noreply@github.com>2024-11-20 17:37:57 +0000
commitf76323e9b295c15751e51e3443aa47a36bee8023 (patch)
tree4113c8cad473a33e0f746966e0cf087252fa1d7a /yql/essentials/tests/sql/suites/bigdate/presort.sql
parent753ecb8d410a4cb459c26f3a0082fb2d1724fe63 (diff)
parenta7b9a6afea2a9d7a7bfac4c5eb4c1a8e60adb9e6 (diff)
downloadydb-f76323e9b295c15751e51e3443aa47a36bee8023.tar.gz
Merge pull request #11788 from ydb-platform/mergelibs-241120-1113
Library import 241120-1113
Diffstat (limited to 'yql/essentials/tests/sql/suites/bigdate/presort.sql')
-rw-r--r--yql/essentials/tests/sql/suites/bigdate/presort.sql25
1 files changed, 25 insertions, 0 deletions
diff --git a/yql/essentials/tests/sql/suites/bigdate/presort.sql b/yql/essentials/tests/sql/suites/bigdate/presort.sql
new file mode 100644
index 0000000000..f0277dcf1d
--- /dev/null
+++ b/yql/essentials/tests/sql/suites/bigdate/presort.sql
@@ -0,0 +1,25 @@
+pragma warning("disable","4510");
+$wa1 = Date32("1900-01-01");
+$wd1 = Datetime64("1900-01-01T02:03:04Z");
+$wt1 = Timestamp64("1900-01-01T02:03:04.567891Z");
+
+$waz1 = TzDate32("1900-01-01,Europe/Moscow");
+$wdz1 = TzDatetime64("1900-01-01T02:03:04,Europe/Moscow");
+$wtz1 = TzTimestamp64("1900-01-01T02:03:04.567891,Europe/Moscow");
+
+$wa2 = Date32("1901-01-01");
+$wd2 = Datetime64("1901-01-01T02:03:04Z");
+$wt2 = Timestamp64("1901-01-01T02:03:04.567891Z");
+
+$waz2 = TzDate32("1901-01-01,Europe/Moscow");
+$wdz2 = TzDatetime64("1901-01-01T02:03:04,Europe/Moscow");
+$wtz2 = TzTimestamp64("1901-01-01T02:03:04.567891,Europe/Moscow");
+
+select
+cast(ListSortDesc([(Yql::Ascending($wa1),$wa1),(Yql::Ascending($wa2),$wa2)]) as List<Tuple<String,String>>),
+cast(ListSortDesc([(Yql::Ascending($wd1),$wd1),(Yql::Ascending($wd2),$wd2)]) as List<Tuple<String,String>>),
+cast(ListSortDesc([(Yql::Ascending($wt1),$wt1),(Yql::Ascending($wt2),$wt2)]) as List<Tuple<String,String>>),
+cast(ListSortDesc([(Yql::Ascending($waz1),$waz1),(Yql::Ascending($waz2),$waz2)]) as List<Tuple<String,String>>),
+cast(ListSortDesc([(Yql::Ascending($wdz1),$wdz1),(Yql::Ascending($wdz2),$wdz2)]) as List<Tuple<String,String>>),
+cast(ListSortDesc([(Yql::Ascending($wtz1),$wtz1),(Yql::Ascending($wtz2),$wtz2)]) as List<Tuple<String,String>>);
+