aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/bigdate/bitcast_timestamp64.sql
blob: 9261b044985335b1c4097f5330ae9378ccb1dfce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
pragma warning("disable","4510");

select bitcast(Yql::Timestamp64(AsAtom("1")) as Uint8)
, bitcast(Yql::Timestamp64(AsAtom("1")) as Int8)
, bitcast(Yql::Timestamp64(AsAtom("1")) as Uint16)
, bitcast(Yql::Timestamp64(AsAtom("1")) as Int16)
, bitcast(Yql::Timestamp64(AsAtom("1")) as Uint32)
, bitcast(Yql::Timestamp64(AsAtom("1")) as Int32)
, bitcast(Yql::Timestamp64(AsAtom("1")) as Uint64)
, bitcast(Yql::Timestamp64(AsAtom("1")) as Int64);