aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/preproc/extern.h
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2004-06-27 12:28:42 +0000
committerMichael Meskes <meskes@postgresql.org>2004-06-27 12:28:42 +0000
commit03ad5da8f89d7bc199a711e1c49b64c2b2832154 (patch)
tree830ee40d7f91a744419b6b3f49a3b130037515fc /src/interfaces/ecpg/preproc/extern.h
parent4eb5f0a8e2a8ef37751ad6086714afed9da31b48 (diff)
downloadpostgresql-03ad5da8f89d7bc199a711e1c49b64c2b2832154.tar.gz
postgresql-03ad5da8f89d7bc199a711e1c49b64c2b2832154.zip
- Only use typedefs inside their scope.
- Variables that are out of scope, were not removed all the time. - Make a varchar NULL set everything to 0 when not using indicators. - Synced parser.
Diffstat (limited to 'src/interfaces/ecpg/preproc/extern.h')
-rw-r--r--src/interfaces/ecpg/preproc/extern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/preproc/extern.h b/src/interfaces/ecpg/preproc/extern.h
index 3383682fc46..3d1088a2071 100644
--- a/src/interfaces/ecpg/preproc/extern.h
+++ b/src/interfaces/ecpg/preproc/extern.h
@@ -82,6 +82,7 @@ extern struct typedefs *get_typedef(char *);
extern void adjust_array(enum ECPGttype, char **, char **, char *, char *, int, bool);
extern void reset_variables(void);
extern void check_indicator(struct ECPGtype *);
+extern void remove_typedefs(int);
extern void remove_variables(int);
extern struct variable *new_variable(const char *, struct ECPGtype *, int);
extern ScanKeyword *ScanKeywordLookup(char *text);