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

Commit088ac58

Browse files
committed
Make string more alike other similar messages.
1 parentd0c64c8 commit088ac58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎src/bin/psql/common.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
55
*
6-
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.141 2009/01/01 17:23:54momjian Exp $
6+
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.142 2009/04/11 18:38:54alvherre Exp $
77
*/
88
#include"postgres_fe.h"
99
#include"common.h"
@@ -824,8 +824,8 @@ SendQuery(const char *query)
824824
{
825825
if (on_error_rollback_warning== false&&pset.sversion<80000)
826826
{
827-
fprintf(stderr,_("The server version(%d) does not support savepoints for ON_ERROR_ROLLBACK.\n"),
828-
pset.sversion);
827+
fprintf(stderr,_("The server(version%d.%d) does not support savepoints for ON_ERROR_ROLLBACK.\n"),
828+
pset.sversion /10000, (pset.sversion /100) %100);
829829
on_error_rollback_warning= true;
830830
}
831831
else

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp