1
0
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:
Tom Lane
2002-08-22 22:17:22 +00:00
parent 8c905b0aa9
commit 5a2c7c3e10

View File

@@ -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);