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
|
|
|
|
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_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-03-04 14:35:28 +01:00
|
|
|
sp_find_procedure(THD *thd, sp_name *name, bool cache_only = 0);
|
2002-12-12 13:14:23 +01:00
|
|
|
|
2004-12-23 11:46:24 +01:00
|
|
|
int
|
|
|
|
sp_exists_routine(THD *thd, TABLE_LIST *procs, bool any, bool no_error);
|
|
|
|
|
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
|
|
|
sp_head *
|
2005-02-08 20:52:50 +01:00
|
|
|
sp_find_function(THD *thd, sp_name *name, bool cache_only = 0);
|
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);
|
|
|
|
void sp_update_sp_used_routines(HASH *dst, HASH *src);
|
2005-07-30 10:19:57 +02:00
|
|
|
bool sp_cache_routines_and_add_tables(THD *thd, LEX *lex,
|
|
|
|
bool first_no_prelock);
|
2005-07-09 19:51:59 +02:00
|
|
|
void sp_cache_routines_and_add_tables_for_view(THD *thd, LEX *lex,
|
|
|
|
LEX *aux_lex);
|
|
|
|
void sp_cache_routines_and_add_tables_for_triggers(THD *thd, LEX *lex,
|
|
|
|
Table_triggers_list *triggers);
|
|
|
|
|
|
|
|
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);
|
|
|
|
void close_proc_table(THD *thd, Open_tables_state *backup);
|
|
|
|
|
2004-03-11 17:18:59 +01:00
|
|
|
//
|
|
|
|
// Utilities...
|
|
|
|
//
|
|
|
|
|
|
|
|
// Do a "use newdb". The current db is stored at olddb.
|
|
|
|
// If newdb is the same as the current one, nothing is changed.
|
2004-06-08 18:41:18 +02:00
|
|
|
// dbchangedp is set to true if the db was actually changed.
|
2004-03-11 17:18:59 +01:00
|
|
|
int
|
|
|
|
sp_use_new_db(THD *thd, char *newdb, char *olddb, uint olddbmax,
|
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_ */
|