Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
38c459e6
Commit
38c459e6
authored
Jul 03, 2003
by
pem@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the new sp cache files too (should have been in previous changeset).
parent
6d225437
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
118 additions
and
0 deletions
+118
-0
sql/sp_cache.cc
sql/sp_cache.cc
+53
-0
sql/sp_cache.h
sql/sp_cache.h
+65
-0
No files found.
sql/sp_cache.cc
0 → 100644
View file @
38c459e6
/* Copyright (C) 2002 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifdef __GNUC__
#pragma implementation
#endif
#include "mysql_priv.h"
#include "sp_cache.h"
#include "sp_head.h"
static
byte
*
hash_get_key_for_sp_head
(
const
byte
*
ptr
,
uint
*
plen
,
my_bool
first
)
{
return
((
sp_head
*
)
ptr
)
->
name
(
plen
);
}
sp_cache
::
sp_cache
()
{
init
();
}
sp_cache
::~
sp_cache
()
{
hash_free
(
&
m_hashtable
);
}
void
sp_cache
::
init
()
{
hash_init
(
&
m_hashtable
,
system_charset_info
,
0
,
0
,
0
,
hash_get_key_for_sp_head
,
0
,
0
);
}
void
sp_cache
::
cleanup
()
{
hash_free
(
&
m_hashtable
);
}
sql/sp_cache.h
0 → 100644
View file @
38c459e6
/* -*- C++ -*- */
/* Copyright (C) 2002 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifndef _SP_CACHE_H_
#define _SP_CACHE_H_
#ifdef __GNUC__
#pragma interface
/* gcc class implementation */
#endif
class
sp_head
;
class
sp_cache
{
public:
sp_cache
();
~
sp_cache
();
void
init
();
void
cleanup
();
inline
void
insert
(
sp_head
*
sp
)
{
hash_insert
(
&
m_hashtable
,
(
const
byte
*
)
sp
);
}
inline
sp_head
*
lookup
(
char
*
name
,
uint
namelen
)
{
return
(
sp_head
*
)
hash_search
(
&
m_hashtable
,
(
const
byte
*
)
name
,
namelen
);
}
inline
void
remove
(
sp_head
*
sp
)
{
hash_delete
(
&
m_hashtable
,
(
byte
*
)
sp
);
}
private:
HASH
m_hashtable
;
};
// class sp_cache
#endif
/* _SP_CACHE_H_ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment