Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
split
  • Loading branch information
LuciferYang committed Mar 25, 2023
commit 98c0fea83808d736fb4c073629679290eddf17f8
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
-- Automatically generated by SQLQueryTestSuite
-- !query
select date'999999-03-18', date'-0001-1-28', date'0015'
-- !query analysis
[Analyzer test output redacted due to nondeterminism]


-- !query
select make_date(999999, 3, 18), make_date(-1, 1, 28)
-- !query analysis
Project [make_date(999999, 3, 18, true) AS make_date(999999, 3, 18)#x, make_date(-1, 1, 28, true) AS make_date(-1, 1, 28)#x]
+- OneRowRelation


-- !query
select timestamp'-1969-12-31 16:00:00', timestamp'-0015-03-18 16:00:00', timestamp'-000001', timestamp'99999-03-18T12:03:17'
-- !query analysis
Project [-1969-12-31 16:00:00 AS TIMESTAMP_NTZ '-1969-12-31 16:00:00'#x, -0015-03-18 16:00:00 AS TIMESTAMP_NTZ '-0015-03-18 16:00:00'#x, -0001-01-01 00:00:00 AS TIMESTAMP_NTZ '-0001-01-01 00:00:00'#x, +99999-03-18 12:03:17 AS TIMESTAMP_NTZ '+99999-03-18 12:03:17'#x]
+- OneRowRelation


-- !query
select make_timestamp(-1969, 12, 31, 16, 0, 0.0), make_timestamp(-15, 3, 18, 16, 0, 0.0), make_timestamp(99999, 3, 18, 12, 3, 17.0)
-- !query analysis
Project [make_timestamp(-1969, 12, 31, 16, 0, cast(0.0 as decimal(16,6)), None, Some(America/Los_Angeles), true, TimestampNTZType) AS make_timestamp(-1969, 12, 31, 16, 0, 0.0)#x, make_timestamp(-15, 3, 18, 16, 0, cast(0.0 as decimal(16,6)), None, Some(America/Los_Angeles), true, TimestampNTZType) AS make_timestamp(-15, 3, 18, 16, 0, 0.0)#x, make_timestamp(99999, 3, 18, 12, 3, cast(17.0 as decimal(16,6)), None, Some(America/Los_Angeles), true, TimestampNTZType) AS make_timestamp(99999, 3, 18, 12, 3, 17.0)#x]
+- OneRowRelation
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--SET spark.sql.ansi.enabled = true
--IMPORT datetime-special.sql
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
--SET spark.sql.ansi.enabled = false
--IMPORT datetime-special.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
-- Automatically generated by SQLQueryTestSuite
-- !query
select date'999999-03-18', date'-0001-1-28', date'0015'
-- !query schema
struct<DATE '+999999-03-18':date,DATE '-0001-01-28':date,DATE '0015-01-01':date>
-- !query output
+999999-03-18 -0001-01-28 0015-01-01


-- !query
select make_date(999999, 3, 18), make_date(-1, 1, 28)
-- !query schema
struct<make_date(999999, 3, 18):date,make_date(-1, 1, 28):date>
-- !query output
+999999-03-18 -0001-01-28


-- !query
select timestamp'-1969-12-31 16:00:00', timestamp'-0015-03-18 16:00:00', timestamp'-000001', timestamp'99999-03-18T12:03:17'
-- !query schema
struct<TIMESTAMP_NTZ '-1969-12-31 16:00:00':timestamp_ntz,TIMESTAMP_NTZ '-0015-03-18 16:00:00':timestamp_ntz,TIMESTAMP_NTZ '-0001-01-01 00:00:00':timestamp_ntz,TIMESTAMP_NTZ '+99999-03-18 12:03:17':timestamp_ntz>
-- !query output
-1969-12-31 16:00:00 -0015-03-18 16:00:00 -0001-01-01 00:00:00 +99999-03-18 12:03:17


-- !query
select make_timestamp(-1969, 12, 31, 16, 0, 0.0), make_timestamp(-15, 3, 18, 16, 0, 0.0), make_timestamp(99999, 3, 18, 12, 3, 17.0)
-- !query schema
struct<make_timestamp(-1969, 12, 31, 16, 0, 0.0):timestamp_ntz,make_timestamp(-15, 3, 18, 16, 0, 0.0):timestamp_ntz,make_timestamp(99999, 3, 18, 12, 3, 17.0):timestamp_ntz>
-- !query output
-1969-12-31 16:00:00 -0015-03-18 16:00:00 +99999-03-18 12:03:17