Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Duplicate
-
3.0.0
-
None
-
None
Description
PostgreSQL supports default option as below
**CREATE TABLE update_test (
a INT DEFAULT 10,
b INT
);
INSERT INTO update_test VALUES (5, 10);
INSERT INTO update_test(b) VALUES (15);
SELECT * FROM update_test;
Attachments
Issue Links
- is duplicated by
-
SPARK-27953 Save default constraint with Column into table properties when create Hive table
- Resolved
- relates to
-
SPARK-19842 Informational Referential Integrity Constraints Support in Spark
- Open