**Description** Given this table: ```sql CREATE TABLE IF NOT EXISTS "doc"."t1" ( "ts" TIMESTAMP, "tsw" TIMESTAMP WITH TIME ZONE, "tswo" TIMESTAMP WITHOUT TIME ZONE ) ``` On inspection of columns: ```python from sqlalchemy import create_engine from sqlalchemy import inspect engine = create_engine("crate://localhost") inspector = inspect(engine) for col in inspector.get_columns("t1"): print(f"{col["name"]} {col["type"]}") ``` **Actual behaviour** The following output is returned: ``` ts UserDefinedType() tsw TIMESTAMP tswo UserDefinedType() ``` **Expected behaviour** All three columns should map to `TIMESTAMP`.