aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2003-07-14 12:18:25 +0000
committerMichael Meskes <meskes@postgresql.org>2003-07-14 12:18:25 +0000
commit6eb27d16b6fcb8aa9747706170dd6c95091821e8 (patch)
treeb9068c12b208700f3bfc46ea655a046d4af62610 /src
parente895eb197df2ae3af871d395e299271e0ddf11b5 (diff)
downloadpostgresql-6eb27d16b6fcb8aa9747706170dd6c95091821e8.tar.gz
postgresql-6eb27d16b6fcb8aa9747706170dd6c95091821e8.zip
Missed one rule in syncinc preproc.y which resulted in reduce/reduce conflicts.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index df2914b02aa..e369927a96f 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -1,4 +1,4 @@
-/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.247 2003/07/14 10:16:44 meskes Exp $ */
+/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.248 2003/07/14 12:18:25 meskes Exp $ */
/* Copyright comment */
%{
@@ -2904,7 +2904,6 @@ opt_select_limit: select_limit { $$ = $1; }
select_limit_value: a_expr { $$ = $1; }
| ALL { $$ = make_str("all"); }
- | PARAM { $$ = make_name(); }
;
select_offset_value: a_expr { $$ = $1; }