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

Commitb0488e5

Browse files
committed
pg_upgrade: add SET log_min_error_statement = warning
Add to commit73d78e1
1 parent73d78e1 commitb0488e5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

‎contrib/pg_upgrade/dump.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ optionally_create_toast_tables(void)
118118
/* Suppress NOTICE output from non-existant constraints */
119119
PQclear(executeQueryOrDie(conn,"SET client_min_messages = warning;"));
120120
PQclear(executeQueryOrDie(conn,"SET log_min_messages = warning;"));
121+
PQclear(executeQueryOrDie(conn,"SET log_min_error_statement = warning;"));
121122

122123
ntups=PQntuples(res);
123124
i_nspname=PQfnumber(res,"nspname");
@@ -138,6 +139,7 @@ optionally_create_toast_tables(void)
138139

139140
PQclear(executeQueryOrDie(conn,"RESET client_min_messages;"));
140141
PQclear(executeQueryOrDie(conn,"RESET log_min_messages;"));
142+
PQclear(executeQueryOrDie(conn,"RESET log_min_error_statement;"));
141143

142144
PQfinish(conn);
143145
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp