diff options
| author | Peter Eisentraut | 2008-11-26 08:45:12 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2008-11-26 08:45:12 +0000 |
| commit | a53536d031da5daab9acd8a4cd2c4ce27fcd9983 (patch) | |
| tree | 42562632859962b4a30fd1c468f5f5012f913180 /src/pl | |
| parent | 1b26b0737924ff2f1197c651f8f8086293e81df9 (diff) | |
Add %expect 0 to all parser input files to prevent conflicts slipping by.
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/plpgsql/src/gram.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pl/plpgsql/src/gram.y b/src/pl/plpgsql/src/gram.y index 4d031fc2c6..24434decb2 100644 --- a/src/pl/plpgsql/src/gram.y +++ b/src/pl/plpgsql/src/gram.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.116 2008/11/05 00:07:53 tgl Exp $ + * $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.117 2008/11/26 08:45:12 petere Exp $ * *------------------------------------------------------------------------- */ @@ -70,6 +70,7 @@ static List *read_raise_options(void); %} +%expect 0 %name-prefix="plpgsql_yy" %union { |
