Is it expected that the type for `foo` would be `L...
# squarelibraries
e
Is it expected that the type for
foo
would be
Long
and not
ZonedDateTime
Copy code
import java.time.ZonedDateTime;

CREATE TABLE dummy(
  foo INTEGER AS ZonedDateTime NOT NULL
);

differentSqlTypes:
SELECT MAX(foo)
FROM dummy;