mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
WL#1366: Use the schema (db) associated with an SP.
Phase 1: Introduced sp_name class, for qualified name support.
This commit is contained in:
@ -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);
|
||||
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user