mirror of
https://github.com/postgres/postgres.git
synced 2025-08-11 04:22:52 +03:00
Fix regression-test breakage from (unnecessary) rewrite of show_datestyle. Grumble.
This commit is contained in:
@@ -9,7 +9,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.57.2.1 2002/08/22 05:27:41 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.57.2.2 2002/08/22 22:17:22 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@@ -293,7 +293,7 @@ show_datestyle(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
snprintf(buf, sizeof(buf), "DateStyle is %s with %s conventions",
|
snprintf(buf, sizeof(buf), "DateStyle is %s with %s conventions",
|
||||||
dstyle, EuroDates ? "European" : "US (NonEuropean");
|
dstyle, EuroDates ? "European" : "US (NonEuropean)");
|
||||||
|
|
||||||
elog(NOTICE, buf, NULL);
|
elog(NOTICE, buf, NULL);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user