Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 344 Bytes

convert_double_colon_cast.md

File metadata and controls

28 lines (20 loc) · 344 Bytes

convert_double_colon_cast

Convert casts by X::type to the form CAST(X AS type).

Options

  • true (default): Convert casts by X::type to the form CAST(X AS type).
  • false : Do not convert casts by X::type.

Example

before:

SELECT
	''::JSONB
FROM
 	TBL

result:

SELECT
	CAST(''	AS	JSONB)
FROM
	TBL