~drizzle-trunk/drizzle/development

243.1.5 by Jay Pipes
* Pulled the remainder of the log and parse stuff out into
1
/* Copyright (C) 2000-2003 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
#ifndef DRIZZLE_SERVER_SQL_ALLOC_H
17
#define DRIZZLE_SERVER_SQL_ALLOC_H
18
19
void init_sql_alloc(MEM_ROOT *root, uint block_size, uint pre_alloc_size);
20
void *sql_alloc(size_t);
21
void *sql_calloc(size_t);
22
char *sql_strdup(const char *str);
23
char *sql_strmake(const char *str, size_t len);
24
void *sql_memdup(const void * ptr, size_t size);
25
void sql_element_free(void *ptr);
26
char *sql_strmake_with_convert(const char *str, size_t arg_length,
27
			       CHARSET_INFO *from_cs,
28
			       size_t max_res_length,
29
			       CHARSET_INFO *to_cs, size_t *result_length);
30
void sql_kill(THD *thd, ulong id, bool only_kill_query);
31
bool net_request_file(NET* net, const char* fname);
32
char* query_table_status(THD *thd,const char *db,const char *table_name);
33
34
#define x_free(A)	{ my_free((uchar*) (A),MYF(MY_WME | MY_FAE | MY_ALLOW_ZERO_PTR)); }
35
#define safeFree(x)	{ if(x) { my_free((uchar*) x,MYF(0)); x = NULL; } }
36
37
#endif /* DRIZZLE_SERVER_SQL_ALLOC_H */