diff options
author | unknown <evgen@sunlight.local> | 2006-08-09 00:05:42 +0400 |
---|---|---|
committer | unknown <evgen@sunlight.local> | 2006-08-09 00:05:42 +0400 |
commit | 1e9ebd010a6b6c7a078d0caa13f9c8145dec1d50 (patch) | |
tree | ab30eaf93e4f7a9c072d16c535283e96bca6260e /sql/unireg.h | |
parent | c8673b09b871f5c6d55ce69e8302dbf0e5b2c348 (diff) | |
download | mariadb-git-1e9ebd010a6b6c7a078d0caa13f9c8145dec1d50.tar.gz |
sql_base.cc, unireg.h, sql_lex.h, table.cc, sql_view.h, sql_view.cc:
Correct memory leak fix
sql/unireg.h:
Correct memory leak fix
sql/table.cc:
Correct memory leak fix
sql/sql_view.h:
Correct memory leak fix
sql/sql_view.cc:
Correct memory leak fix
sql/sql_lex.h:
Correct memory leak fix
sql/sql_base.cc:
Correct memory leak fix
Diffstat (limited to 'sql/unireg.h')
-rw-r--r-- | sql/unireg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/unireg.h b/sql/unireg.h index b932a2f320c..dfebde01338 100644 --- a/sql/unireg.h +++ b/sql/unireg.h @@ -147,7 +147,8 @@ #define READ_SCREENS 1024 /* Read screens, info and helpfile */ #define DELAYED_OPEN 4096 /* Open table later */ #define NO_ERR_ON_NEW_FRM 8192 /* stop error sending on new format */ - +#define OPEN_VIEW_NO_PARSE 16384 /* Open frm only if it's a view, + but do not parse view itself */ #define SC_INFO_LENGTH 4 /* Form format constant */ #define TE_INFO_LENGTH 3 #define MTYP_NOEMPTY_BIT 128 |