blob: 61f8baf4f9a1b556bb551996b44a74cf570971a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* postgres can not */
/* multirun can not */
use plato;
pragma yt.KeepWorldDepForFillOp;
insert into @tmpTable
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;
commit;
insert into Output
select * from @tmpTable where d32 < date32('1970-1-1');
|