Fix regression-test breakage from (unnecessary) rewrite of show_datestyle. Grumble.
authorTom Lane <[email protected]>
Thu, 22 Aug 2002 22:17:22 +0000 (22:17 +0000)
committerTom Lane <[email protected]>
Thu, 22 Aug 2002 22:17:22 +0000 (22:17 +0000)
src/backend/commands/variable.c

index 7e19e3ef300961a452c81ac977ce6e647967927f..894b9ceb75506d6134800451ffc126570077e7c4 100644 (file)
@@ -293,7 +293,7 @@ show_datestyle(void)
        }
 
        snprintf(buf, sizeof(buf), "DateStyle is %s with %s conventions",
-                        dstyle, EuroDates ? "European" : "US (NonEuropean");
+                        dstyle, EuroDates ? "European" : "US (NonEuropean)");
 
        elog(NOTICE, buf, NULL);