diff options
author | malff@lambda.hsd1.co.comcast.net. <> | 2007-10-16 15:43:16 -0600 |
---|---|---|
committer | malff@lambda.hsd1.co.comcast.net. <> | 2007-10-16 15:43:16 -0600 |
commit | a4c66084a8d746556899088b14b27a83f4f62182 (patch) | |
tree | cd392457a794060b12c7e5bcea34b7bffb75708d /sql/sp_head.h | |
parent | a1978fefeee4b37975d4d1a3dc1d77904baf7da9 (diff) | |
parent | f3a6483945ff8af19bacfc25ea613d4968b491ba (diff) | |
download | mariadb-git-a4c66084a8d746556899088b14b27a83f4f62182.tar.gz |
Merge lambda.hsd1.co.comcast.net.:/home/malff/TREE/mysql-5.0-runtime
into lambda.hsd1.co.comcast.net.:/home/malff/TREE/mysql-5.1-rt-merge
Diffstat (limited to 'sql/sp_head.h')
-rw-r--r-- | sql/sp_head.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sql/sp_head.h b/sql/sp_head.h index 3a8b41acd4c..d74170534bd 100644 --- a/sql/sp_head.h +++ b/sql/sp_head.h @@ -129,16 +129,7 @@ public: Creates temporary sp_name object from key, used mainly for SP-cache lookups. */ - sp_name(char *key, uint key_len) - { - m_sroutines_key.str= key; - m_sroutines_key.length= key_len; - m_name.str= m_qname.str= key + 1; - m_name.length= m_qname.length= key_len - 1; - m_db.str= 0; - m_db.length= 0; - m_explicit_name= false; - } + sp_name(THD *thd, char *key, uint key_len); // Init. the qualified name from the db and name. void init_qname(THD *thd); // thd for memroot allocation |