Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3a0e857

Browse files
committed
Correct reference to pg_catalog.regtype in pg_upgrade query
The recursive CTE added in0ccfc28 referenced pg_catalog.regtype,without the schema part, unlike all other queries in pg_upgrade.Backpatch-to: 12
1 parent0ccfc28 commit3a0e857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/bin/pg_upgrade/version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ old_11_check_for_sql_identifier_data_type_usage(ClusterInfo *cluster)
443443
res=executeQueryOrDie(conn,
444444
"WITH RECURSIVE oids AS ( "
445445
/* the sql_identifier type itself */
446-
"SELECT 'information_schema.sql_identifier'::regtype AS oid "
446+
"SELECT 'information_schema.sql_identifier'::pg_catalog.regtype AS oid "
447447
"UNION ALL "
448448
"SELECT * FROM ( "
449449
/* domains on the type */

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp