zstan commented on code in PR #3513:
URL: https://github.com/apache/ignite-3/pull/3513#discussion_r1548171714


##########
modules/sql-engine/src/integrationTest/sql/types/date/test_date.test:
##########
@@ -0,0 +1,38 @@
+# name: test/sql/types/date/test_date.test
+# description: Test basic DATE functionality
+# group: [date]
+
+statement ok
+PRAGMA enable_verification
+
+# create and insert into table
+statement ok
+CREATE TABLE dates(i DATE)
+
+statement ok
+INSERT INTO dates VALUES ('1993-08-14')
+
+# TODO https://issues.apache.org/jira/browse/IGNITE-15123 Multi-tuple insert 
fails on validation
+statement ok
+INSERT INTO dates VALUES (NULL)
+
+# check that we can select dates
+query T rowsort
+SELECT * FROM dates

Review Comment:
   seems we need ordering definition if we wait defined ordered results ?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to