Convert casts by X::type
to the form CAST(X AS type)
.
true
(default): Convert casts byX::type
to the formCAST(X AS type)
.false
: Do not convert casts byX::type
.
before:
SELECT
''::JSONB
FROM
TBL
result:
SELECT
CAST('' AS JSONB)
FROM
TBL