File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -449,7 +449,7 @@ CREATE VIEW check_constraints AS
449
449
SELECT current_database()::information_schema .sql_identifier AS constraint_catalog,
450
450
rs .nspname ::information_schema .sql_identifier AS constraint_schema,
451
451
con .conname ::information_schema .sql_identifier AS constraint_name,
452
- pg_catalog .format (' CHECK ( %s IS NOT NULL) ' , at .attname )::information_schema .character_data AS check_clause
452
+ pg_catalog .format (' %s IS NOT NULL' , at .attname )::information_schema .character_data AS check_clause
453
453
FROM pg_constraint con
454
454
LEFT JOIN pg_namespace rs ON rs .oid = con .connamespace
455
455
LEFT JOIN pg_class c ON c .oid = con .conrelid
Original file line number Diff line number Diff line change 57
57
*/
58
58
59
59
/* yyyymmddN */
60
- #define CATALOG_VERSION_NO 202309061
60
+ #define CATALOG_VERSION_NO 202309181
61
61
62
62
#endif
You can’t perform that action at this time.
0 commit comments