|
CREATE DOMAIN text_x AS TEXT
DEFAULT 'X';
CREATE TABLE tbl1 (
id int
, col_without_default text_x
, col_with_default text_x DEFAULT NULL);
CREATE TABLE tbl2 (
id int
, col_without_default information_schema.time_stamp
, col_with_default information_schema.time_stamp DEFAULT NULL);
|