From: Bruce Momjian Date: Sun, 13 Feb 2005 01:25:50 +0000 (+0000) Subject: Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requested X-Git-Tag: REL8_1_0BETA1~1384 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67ff8009cf363feafe6ce53e65617065c8350fc0;p=postgresql Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requested DEBUG. --- diff --git a/src/pl/plpgsql/src/gram.y b/src/pl/plpgsql/src/gram.y index c1d0f6c90a..1c8fa43b21 100644 --- a/src/pl/plpgsql/src/gram.y +++ b/src/pl/plpgsql/src/gram.y @@ -4,7 +4,7 @@ * procedural language * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.64 2004/10/25 06:27:21 neilc Exp $ + * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.65 2005/02/13 01:25:50 momjian Exp $ * * This software is copyrighted by Jan Wieck - Hamburg. * @@ -1277,7 +1277,7 @@ raise_level : K_EXCEPTION } | K_DEBUG { - $$ = DEBUG2; + $$ = DEBUG1; } ;