summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut2023-08-16 11:46:26 +0000
committerPeter Eisentraut2023-08-16 11:46:26 +0000
commit78806a95095c4fb9230a441925244690d9c07d23 (patch)
treeeae8baca5c74546e2169c93a97decc66119b883a /src
parentc9bfa40914be4a0882b904834c2bd32775a50d7b (diff)
Remove incorrect field from information schema
The source code comment already said that the presence of the field element_types.domain_default might be a bug in the standard, since it never made sense there. Indeed, the field is gone in newer versions of the standard. So just remove it.
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/information_schema.sql2
-rw-r--r--src/include/catalog/catversion.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/catalog/information_schema.sql b/src/backend/catalog/information_schema.sql
index 8bcd42467a1..a06ec7a0a8d 100644
--- a/src/backend/catalog/information_schema.sql
+++ b/src/backend/catalog/information_schema.sql
@@ -2741,8 +2741,6 @@ CREATE VIEW element_types AS
CAST(null AS character_data) AS interval_type,
CAST(null AS cardinal_number) AS interval_precision,
- CAST(null AS character_data) AS domain_default, -- XXX maybe a bug in the standard
-
CAST(current_database() AS sql_identifier) AS udt_catalog,
CAST(nbt.nspname AS sql_identifier) AS udt_schema,
CAST(bt.typname AS sql_identifier) AS udt_name,
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h
index f507b49bb28..7f9c43b2aba 100644
--- a/src/include/catalog/catversion.h
+++ b/src/include/catalog/catversion.h
@@ -57,6 +57,6 @@
*/
/* yyyymmddN */
-#define CATALOG_VERSION_NO 202307261
+#define CATALOG_VERSION_NO 202308161
#endif