summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-03-27 03:25:43 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-03-27 03:25:43 +0000
commitb190aae9ad958c6c91e879d21570ec56086980aa (patch)
tree1e872fa7baa8299eaec73bcd71477b49330cddee /src
parent96283327f3a235ce4fdd4cf62b0c194687b488d5 (diff)
Fix typo, ensable -> enable, per Steve Gieseking.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index f04cfb2ffd0..49fab81fa32 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.311.2.4 2006/08/18 16:00:06 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.311.2.5 2007/03/27 03:25:43 tgl Exp $ */
/* Copyright comment */
%{
@@ -6092,7 +6092,7 @@ ECPGunreserved_con: ABORT_P { $$ = make_str("abort"); }
| DOUBLE_P { $$ = make_str("double"); }
| DROP { $$ = make_str("drop"); }
| EACH { $$ = make_str("each"); }
- | ENABLE_P { $$ = make_str("ensable"); }
+ | ENABLE_P { $$ = make_str("enable"); }
| ENCODING { $$ = make_str("encoding"); }
| ENCRYPTED { $$ = make_str("encrypted"); }
| ESCAPE { $$ = make_str("escape"); }