diff options
author | unknown <dlenev@mockturtle.local> | 2006-11-01 15:46:40 +0300 |
---|---|---|
committer | unknown <dlenev@mockturtle.local> | 2006-11-01 15:46:40 +0300 |
commit | 8c6382f5c65c3e4fce800f77a0a5bfb3188b5729 (patch) | |
tree | 9395d28b5795373b1796ce1c257b63e3b5c160ac /sql/sql_lex.h | |
parent | ae03b232ccb807c1351c1ee008bb9d6f06c22d50 (diff) | |
parent | 57c2f22a54f33267e2f9cc7437f78f36b47a32fe (diff) | |
download | mariadb-git-8c6382f5c65c3e4fce800f77a0a5bfb3188b5729.tar.gz |
Merge mockturtle.local:/home/dlenev/src/mysql-5.0-hash-2
into mockturtle.local:/home/dlenev/src/mysql-5.1-merge
sql/sp.cc:
Auto merged
sql/sql_lex.cc:
Auto merged
sql/sql_lex.h:
Auto merged
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index c8acc9aeca4..ee6e500ef76 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -792,7 +792,11 @@ public: 0 - indicates that this query does not need prelocking. */ TABLE_LIST **query_tables_own_last; - /* Set of stored routines called by statement. */ + /* + Set of stored routines called by statement. + (Note that we use lazy-initialization for this hash). + */ + enum { START_SROUTINES_HASH_SIZE= 16 }; HASH sroutines; /* List linking elements of 'sroutines' set. Allows you to add new elements |