date_tz_impossible_cast.sql 185 B

1234567
  1. /* custom error:cannot be casted to TzDate*/
  2. SELECT
  3. CAST(AddTimezone(
  4. /* "1970-01-01T20:59:59Z" */
  5. CAST(75599 AS DateTime),
  6. "Europe/Moscow"
  7. ) AS TzDate)