table_yt_native.sql 314 B

1234567891011
  1. /* postgres can not */
  2. /* multirun can not */
  3. use plato;
  4. insert into @tmpTable
  5. select date32('1969-12-31') as d32, datetime64('1969-12-31T0:0:0Z') as dt64, timestamp64('1969-12-31T0:0:0Z') as ts64, interval64('P65536D') as i64;
  6. commit;
  7. insert into Output
  8. select * from @tmpTable where d32 < date32('1970-1-1');