Move plpgsql DEBUG from DEBUG2 to DEBUG1 because it is a user-requested

DEBUG.
This commit is contained in:
Bruce Momjian 2005-02-13 01:25:50 +00:00
parent 5e73d4361c
commit 67ff8009cf

View File

@ -4,7 +4,7 @@
* procedural language * procedural language
* *
* IDENTIFICATION * 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. * This software is copyrighted by Jan Wieck - Hamburg.
* *
@ -1277,7 +1277,7 @@ raise_level : K_EXCEPTION
} }
| K_DEBUG | K_DEBUG
{ {
$$ = DEBUG2; $$ = DEBUG1;
} }
; ;