2002-12-12 13:14:23 +01:00
|
|
|
/* -*- 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
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2002-12-12 13:14:23 +01:00
|
|
|
|
|
|
|
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_H_
|
|
|
|
#define _SP_H_
|
|
|
|
|
2003-11-20 15:07:22 +01:00
|
|
|
// Return codes from sp_create_*, sp_drop_*, and sp_show_*:
|
2003-02-21 17:37:05 +01:00
|
|
|
#define SP_OK 0
|
|
|
|
#define SP_KEY_NOT_FOUND -1
|
|
|
|
#define SP_OPEN_TABLE_FAILED -2
|
|
|
|
#define SP_WRITE_ROW_FAILED -3
|
|
|
|
#define SP_DELETE_ROW_FAILED -4
|
|
|
|
#define SP_GET_FIELD_FAILED -5
|
|
|
|
#define SP_PARSE_ERROR -6
|
2003-11-20 15:07:22 +01:00
|
|
|
#define SP_INTERNAL_ERROR -7
|
2004-06-15 15:42:28 +02:00
|
|
|
#define SP_NO_DB_ERROR -8
|
2005-05-31 18:36:32 +02:00
|
|
|
#define SP_BAD_IDENTIFIER -9
|
2005-07-27 03:08:49 +02:00
|
|
|
#define SP_BODY_TOO_LONG -10
|
2003-02-21 17:37:05 +01:00
|
|
|
|
2004-03-22 14:44:41 +01:00
|
|
|
/* Drop all routines in database 'db' */
|
|
|
|
int
|
|
|
|
sp_drop_db_routines(THD *thd, char *db);
|
|
|
|
|
2002-12-12 13:14:23 +01:00
|
|
|
sp_head *
|
2005-11-23 00:11:19 +01:00
|
|
|
sp_find_routine(THD *thd, int type, sp_name *name,
|
|
|
|
sp_cache **cp, bool cache_only);
|
2002-12-12 13:14:23 +01:00
|
|
|
|
2004-12-23 11:46:24 +01:00
|
|
|
int
|
2006-01-26 13:29:46 +01:00
|
|
|
sp_exist_routines(THD *thd, TABLE_LIST *procs, bool any, bool no_error);
|
|
|
|
|
|
|
|
int
|
|
|
|
sp_routine_exists_in_table(THD *thd, int type, sp_name *name);
|
2004-12-23 11:46:24 +01:00
|
|
|
|
2002-12-12 13:14:23 +01:00
|
|
|
int
|
2003-12-12 14:05:29 +01:00
|
|
|
sp_create_procedure(THD *thd, sp_head *sp);
|
2002-12-12 13:14:23 +01:00
|
|
|
|
|
|
|
int
|
2004-02-17 17:36:53 +01:00
|
|
|
sp_drop_procedure(THD *thd, sp_name *name);
|
2003-02-04 17:40:18 +01:00
|
|
|
|
2003-02-21 17:37:05 +01:00
|
|
|
|
2003-11-17 18:21:36 +01:00
|
|
|
int
|
2004-10-22 19:05:17 +02:00
|
|
|
sp_update_procedure(THD *thd, sp_name *name, st_sp_chistics *chistics);
|
2003-11-17 18:21:36 +01:00
|
|
|
|
|
|
|
int
|
2004-02-17 17:36:53 +01:00
|
|
|
sp_show_create_procedure(THD *thd, sp_name *name);
|
2003-11-17 18:21:36 +01:00
|
|
|
|
|
|
|
int
|
2003-11-20 15:07:22 +01:00
|
|
|
sp_show_status_procedure(THD *thd, const char *wild);
|
2003-11-17 18:21:36 +01:00
|
|
|
|
2003-02-04 17:40:18 +01:00
|
|
|
int
|
2003-12-12 14:05:29 +01:00
|
|
|
sp_create_function(THD *thd, sp_head *sp);
|
2003-02-04 17:40:18 +01:00
|
|
|
|
|
|
|
int
|
2004-02-17 17:36:53 +01:00
|
|
|
sp_drop_function(THD *thd, sp_name *name);
|
2002-12-12 13:14:23 +01:00
|
|
|
|
2003-11-17 18:21:36 +01:00
|
|
|
int
|
2004-10-22 19:05:17 +02:00
|
|
|
sp_update_function(THD *thd, sp_name *name, st_sp_chistics *chistics);
|
2003-11-17 18:21:36 +01:00
|
|
|
|
|
|
|
int
|
2004-02-17 17:36:53 +01:00
|
|
|
sp_show_create_function(THD *thd, sp_name *name);
|
2003-11-17 18:21:36 +01:00
|
|
|
|
|
|
|
int
|
2003-11-20 15:07:22 +01:00
|
|
|
sp_show_status_function(THD *thd, const char *wild);
|
2003-11-17 18:21:36 +01:00
|
|
|
|
2003-03-02 19:17:41 +01:00
|
|
|
|
2005-02-08 20:52:50 +01:00
|
|
|
/*
|
2005-07-09 19:51:59 +02:00
|
|
|
Procedures for pre-caching of stored routines and building table list
|
|
|
|
for prelocking.
|
|
|
|
*/
|
2005-08-03 05:37:32 +02:00
|
|
|
void sp_get_prelocking_info(THD *thd, bool *need_prelocking,
|
|
|
|
bool *first_no_prelocking);
|
2005-07-09 21:11:17 +02:00
|
|
|
void sp_add_used_routine(LEX *lex, Query_arena *arena,
|
2005-07-09 19:51:59 +02:00
|
|
|
sp_name *rt, char rt_type);
|
2005-09-15 01:56:09 +02:00
|
|
|
void sp_remove_not_own_routines(LEX *lex);
|
2005-07-09 19:51:59 +02:00
|
|
|
void sp_update_sp_used_routines(HASH *dst, HASH *src);
|
2005-12-07 10:47:25 +01:00
|
|
|
int sp_cache_routines_and_add_tables(THD *thd, LEX *lex,
|
2006-07-26 12:40:26 +02:00
|
|
|
bool first_no_prelock);
|
2005-10-26 15:34:57 +02:00
|
|
|
int sp_cache_routines_and_add_tables_for_view(THD *thd, LEX *lex,
|
2005-12-07 10:47:25 +01:00
|
|
|
TABLE_LIST *view);
|
2005-10-26 15:34:57 +02:00
|
|
|
int sp_cache_routines_and_add_tables_for_triggers(THD *thd, LEX *lex,
|
2005-12-07 10:47:25 +01:00
|
|
|
TABLE_LIST *table);
|
2005-07-09 19:51:59 +02:00
|
|
|
|
|
|
|
extern "C" byte* sp_sroutine_key(const byte *ptr, uint *plen, my_bool first);
|
2004-03-11 17:18:59 +01:00
|
|
|
|
2005-08-08 15:46:06 +02:00
|
|
|
/*
|
|
|
|
Routines which allow open/lock and close mysql.proc table even when
|
|
|
|
we already have some tables open and locked.
|
|
|
|
*/
|
|
|
|
TABLE *open_proc_table_for_read(THD *thd, Open_tables_state *backup);
|
|
|
|
|
2004-03-11 17:18:59 +01:00
|
|
|
|
A fix and a test case for
Bug#19022 "Memory bug when switching db during trigger execution"
Bug#17199 "Problem when view calls function from another database."
Bug#18444 "Fully qualified stored function names don't work correctly in
SELECT statements"
Documentation note: this patch introduces a change in behaviour of prepared
statements.
This patch adds a few new invariants with regard to how THD::db should
be used. These invariants should be preserved in future:
- one should never refer to THD::db by pointer and always make a deep copy
(strmake, strdup)
- one should never compare two databases by pointer, but use strncmp or
my_strncasecmp
- TABLE_LIST object table->db should be always initialized in the parser or
by creator of the object.
For prepared statements it means that if the current database is changed
after a statement is prepared, the database that was current at prepare
remains active. This also means that you can not prepare a statement that
implicitly refers to the current database if the latter is not set.
This is not documented, and therefore needs documentation. This is NOT a
change in behavior for almost all SQL statements except:
- ALTER TABLE t1 RENAME t2
- OPTIMIZE TABLE t1
- ANALYZE TABLE t1
- TRUNCATE TABLE t1 --
until this patch t1 or t2 could be evaluated at the first execution of
prepared statement.
CURRENT_DATABASE() still works OK and is evaluated at every execution
of prepared statement.
Note, that in stored routines this is not an issue as the default
database is the database of the stored procedure and "use" statement
is prohibited in stored routines.
This patch makes obsolete the use of check_db_used (it was never used in the
old code too) and all other places that check for table->db and assign it
from THD::db if it's NULL, except the parser.
How this patch was created: THD::{db,db_length} were replaced with a
LEX_STRING, THD::db. All the places that refer to THD::{db,db_length} were
manually checked and:
- if the place uses thd->db by pointer, it was fixed to make a deep copy
- if a place compared two db pointers, it was fixed to compare them by value
(via strcmp/my_strcasecmp, whatever was approproate)
Then this intermediate patch was used to write a smaller patch that does the
same thing but without a rename.
TODO in 5.1:
- remove check_db_used
- deploy THD::set_db in mysql_change_db
See also comments to individual files.
2006-06-26 22:47:52 +02:00
|
|
|
/*
|
|
|
|
Do a "use new_db". The current db is stored at old_db. If new_db is the
|
|
|
|
same as the current one, nothing is changed. dbchangedp is set to true if
|
|
|
|
the db was actually changed.
|
|
|
|
*/
|
|
|
|
|
2004-03-11 17:18:59 +01:00
|
|
|
int
|
A fix and a test case for
Bug#19022 "Memory bug when switching db during trigger execution"
Bug#17199 "Problem when view calls function from another database."
Bug#18444 "Fully qualified stored function names don't work correctly in
SELECT statements"
Documentation note: this patch introduces a change in behaviour of prepared
statements.
This patch adds a few new invariants with regard to how THD::db should
be used. These invariants should be preserved in future:
- one should never refer to THD::db by pointer and always make a deep copy
(strmake, strdup)
- one should never compare two databases by pointer, but use strncmp or
my_strncasecmp
- TABLE_LIST object table->db should be always initialized in the parser or
by creator of the object.
For prepared statements it means that if the current database is changed
after a statement is prepared, the database that was current at prepare
remains active. This also means that you can not prepare a statement that
implicitly refers to the current database if the latter is not set.
This is not documented, and therefore needs documentation. This is NOT a
change in behavior for almost all SQL statements except:
- ALTER TABLE t1 RENAME t2
- OPTIMIZE TABLE t1
- ANALYZE TABLE t1
- TRUNCATE TABLE t1 --
until this patch t1 or t2 could be evaluated at the first execution of
prepared statement.
CURRENT_DATABASE() still works OK and is evaluated at every execution
of prepared statement.
Note, that in stored routines this is not an issue as the default
database is the database of the stored procedure and "use" statement
is prohibited in stored routines.
This patch makes obsolete the use of check_db_used (it was never used in the
old code too) and all other places that check for table->db and assign it
from THD::db if it's NULL, except the parser.
How this patch was created: THD::{db,db_length} were replaced with a
LEX_STRING, THD::db. All the places that refer to THD::{db,db_length} were
manually checked and:
- if the place uses thd->db by pointer, it was fixed to make a deep copy
- if a place compared two db pointers, it was fixed to compare them by value
(via strcmp/my_strcasecmp, whatever was approproate)
Then this intermediate patch was used to write a smaller patch that does the
same thing but without a rename.
TODO in 5.1:
- remove check_db_used
- deploy THD::set_db in mysql_change_db
See also comments to individual files.
2006-06-26 22:47:52 +02:00
|
|
|
sp_use_new_db(THD *thd, LEX_STRING new_db, LEX_STRING *old_db,
|
2004-06-08 18:41:18 +02:00
|
|
|
bool no_access_check, bool *dbchangedp);
|
2004-03-11 17:18:59 +01:00
|
|
|
|
2002-12-12 13:14:23 +01:00
|
|
|
#endif /* _SP_H_ */
|