diff options
author | unknown <pem@mysql.com> | 2003-04-27 17:35:54 +0200 |
---|---|---|
committer | unknown <pem@mysql.com> | 2003-04-27 17:35:54 +0200 |
commit | 64cad16faab92467061ea41f6c763dd8e044f344 (patch) | |
tree | 8ee26a9c1b0492e3901fa47eba690aba4bea532c /sql/sp_head.h | |
parent | 06e8139be7b43f3d659bcc943a69ac07249a6650 (diff) | |
download | mariadb-git-64cad16faab92467061ea41f6c763dd8e044f344.tar.gz |
Post-fix of bug #302 fix.
Fixed bug #320.
Some new tests and cosmetic changes.
Another strcasecmp() replaced.
mysql-test/r/sp.result:
Moved SP tests from subselect and added some more.
mysql-test/r/subselect.result:
Moved SP tests to sp.test.
mysql-test/t/sp.test:
Moved SP tests from subselect and added some more.
mysql-test/t/subselect.test:
Moved SP tests to sp.test.
sql/sp.cc:
Don't close derived tables.
sql/sp_head.cc:
Minor layout and comment fix.
sql/sp_head.h:
Minor comment fix.
sql/sql_derived.cc:
Don't set org_table_list->derived to 1 when debugging, as this breaks certain
subselect args to SPs.
sql/sql_parse.cc:
Post-fix of bugfix (free memory on error), and added comment.
sql/sql_yacc.yy:
Another strcasecmp() replaced.
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index b79dfdab8e9..b0685ba7ca3 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -49,7 +49,7 @@ public: my_bool m_multi_query; // TRUE if a procedure with SELECT(s) uint m_old_cmq; // Old CLIENT_MULTI_QUERIES value #if 0 - // We're not using this at the moment. + // QQ We're not using this at the moment. List<char *> m_calls; // Called procedures. List<char *> m_tables; // Used tables. #endif |