You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TYPE udt_KeyValue AS (
Key INT,
Value VARCHAR(1000)
);
*Motivation
PGSQL does not support user-defined table types, but it does support user-defined data types. we use them to store csv data in user defined types and refctor them
The text was updated successfully, but these errors were encountered:
Describe the feature
Support User defined types
https://www.postgresql.org/docs/current/xtypes.html
Example :
*Motivation
PGSQL does not support user-defined table types, but it does support user-defined data types. we use them to store csv data in user defined types and refctor them
The text was updated successfully, but these errors were encountered: