diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-06-09 01:44:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-06-09 01:44:34 +0000 |
commit | 8c1d09d591c446aa777668497abd91a60c26dc97 (patch) | |
tree | f8d534926aefb0f366da2a916b812b29e50fcc63 /src/include/commands/variable.h | |
parent | fb070464c1907bfea7c4f15fddf6c6c6f034042c (diff) |
Inheritance overhaul by Chris Bitmead <chris@bitmead.com>
Diffstat (limited to 'src/include/commands/variable.h')
-rw-r--r-- | src/include/commands/variable.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/commands/variable.h b/src/include/commands/variable.h index 682d84e3ca8..de26bcd6e04 100644 --- a/src/include/commands/variable.h +++ b/src/include/commands/variable.h @@ -2,7 +2,7 @@ * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * - * $Id: variable.h,v 1.10 2000/05/31 00:28:37 petere Exp $ + * $Id: variable.h,v 1.11 2000/06/09 01:44:24 momjian Exp $ * */ #ifndef VARIABLE_H @@ -13,5 +13,6 @@ extern void GetPGVariable(const char *name); extern void ResetPGVariable(const char *name); extern void set_default_datestyle(void); +extern bool examine_subclass; #endif /* VARIABLE_H */ |