cmu-db / peloton

The Self-Driving Database Management System
http://pelotondb.io
Apache License 2.0
2.03k stars 624 forks source link

Insert date field error #1464

Open happyjoblzp opened 5 years ago

happyjoblzp commented 5 years ago
default_database=# CREATE TABLE test (shipdate   DATE NOT NULL);
CREATE TABLE
default_database=# insert into test values(date '2011-11-12');
INSERT 0 1
default_database=# select * from test;
  shipdate   
-------------
 50350-04-03
(1 row)