summaryrefslogtreecommitdiff
path: root/sql/sp_cache.h
diff options
context:
space:
mode:
authorpem@mysql.comhem.se <>2004-02-17 17:36:53 +0100
committerpem@mysql.comhem.se <>2004-02-17 17:36:53 +0100
commitb205759949574aef96be069be78a13a69cd19d2c (patch)
treeed911cc3b55e2fc5c450953efcdddc56c730097e /sql/sp_cache.h
parent786e19e524ca7b4e55da8fc42032e8fab55ffcda (diff)
downloadmariadb-git-b205759949574aef96be069be78a13a69cd19d2c.tar.gz
WL#1366: Use the schema (db) associated with an SP.
Phase 1: Introduced sp_name class, for qualified name support.
Diffstat (limited to 'sql/sp_cache.h')
-rw-r--r--sql/sp_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sp_cache.h b/sql/sp_cache.h
index da25227303b..253e9b11588 100644
--- a/sql/sp_cache.h
+++ b/sql/sp_cache.h
@@ -35,10 +35,10 @@ void sp_cache_clear(sp_cache **cp);
void sp_cache_insert(sp_cache **cp, sp_head *sp);
/* Lookup an SP in cache */
-sp_head *sp_cache_lookup(sp_cache **cp, char *name, uint namelen);
+sp_head *sp_cache_lookup(sp_cache **cp, sp_name *name);
/* Remove an SP from cache. Returns true if something was removed */
-bool sp_cache_remove(sp_cache **cp, char *name, uint namelen);
+bool sp_cache_remove(sp_cache **cp, sp_name *name);
/*