mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
2f664e46c6
into chilla.local:/home/mydev/mysql-5.1-wl2936-two client/mysql.cc: Auto merged client/mysqltest.c: Auto merged include/my_global.h: Auto merged include/my_sys.h: Auto merged mysql-test/lib/mtr_cases.pl: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/ndb_dd_basic.result: Auto merged mysql-test/r/variables.result: Auto merged mysql-test/t/ndb_dd_basic.test: Auto merged mysql-test/t/variables.test: Auto merged mysys/hash.c: Auto merged sql/event_queue.cc: Auto merged sql/ha_ndbcluster.cc: Auto merged sql/ha_partition.cc: Auto merged sql/handler.cc: Auto merged sql/item_func.cc: Auto merged sql/item_sum.cc: Auto merged sql/log.cc: Auto merged sql/mysql_priv.h: Auto merged sql/mysqld.cc: Auto merged sql/opt_range.cc: Auto merged sql/set_var.cc: Auto merged sql/sql_base.cc: Auto merged sql/sql_cache.cc: Auto merged sql/sql_class.cc: Auto merged sql/sql_class.h: Auto merged sql/sql_connect.cc: Auto merged sql/sql_delete.cc: Auto merged sql/sql_insert.cc: Auto merged sql/sql_lex.cc: Auto merged sql/sql_lex.h: Auto merged sql/sql_parse.cc: Auto merged sql/sql_plugin.cc: Auto merged sql/sql_repl.cc: Auto merged sql/sql_select.cc: Auto merged sql/sql_show.cc: Auto merged sql/sql_table.cc: Auto merged sql/sql_yacc.yy: Auto merged sql/structs.h: Auto merged sql/table.cc: Auto merged storage/innobase/handler/ha_innodb.cc: Auto merged storage/innobase/handler/ha_innodb.h: Auto merged include/typelib.h: WL#2936 - Falcon & MySQL plugin interface: server variables Manual merge mysys/typelib.c: WL#2936 - Falcon & MySQL plugin interface: server variables Manual merge
39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/* Copyright (C) 2000 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; version 2 of the License.
|
|
|
|
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 _typelib_h
|
|
#define _typelib_h
|
|
|
|
#include "my_alloc.h"
|
|
|
|
typedef struct st_typelib { /* Different types saved here */
|
|
unsigned int count; /* How many types */
|
|
const char *name; /* Name of typelib */
|
|
const char **type_names;
|
|
unsigned int *type_lengths;
|
|
} TYPELIB;
|
|
|
|
extern my_ulonglong find_typeset(char *x, TYPELIB *typelib,int *error_position);
|
|
extern int find_type_or_exit(const char *x, TYPELIB *typelib,
|
|
const char *option);
|
|
extern int find_type(char *x, const TYPELIB *typelib, unsigned int full_name);
|
|
extern void make_type(char *to,unsigned int nr,TYPELIB *typelib);
|
|
extern const char *get_type(TYPELIB *typelib,unsigned int nr);
|
|
extern TYPELIB *copy_typelib(MEM_ROOT *root, TYPELIB *from);
|
|
|
|
extern TYPELIB sql_protocol_typelib;
|
|
|
|
#endif /* _typelib_h */
|