The clob data type is unsupported in Postgres. However, it can be easily defined as a synonym to the text type:
create domain clob as text;
The clob data type is unsupported in Postgres. However, it can be easily defined as a synonym to the text type:
create domain clob as text;