mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-07 12:20:31 +01:00
Fix regression-test breakage from (unnecessary) rewrite of show_datestyle. Grumble.
This commit is contained in:
parent
8c905b0aa9
commit
5a2c7c3e10
|
|
@ -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);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user