mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Merge jamppa@bk-internal.mysql.com:/home/bk/mysql-5.1
into a88-113-38-195.elisa-laajakaista.fi:/home/my/bk/mysql-5.1-marvel BitKeeper/etc/ignore: auto-union client/mysql.cc: Auto merged client/mysqldump.c: Auto merged client/mysqltest.c: Auto merged extra/comp_err.c: Auto merged include/decimal.h: Auto merged include/my_getopt.h: Auto merged include/my_global.h: Auto merged include/my_sys.h: Auto merged include/mysql.h: Auto merged mysys/array.c: Auto merged mysys/hash.c: Auto merged mysys/typelib.c: Auto merged sql/derror.cc: Auto merged sql/event_data_objects.cc: Auto merged sql/event_queue.cc: Auto merged sql/field.cc: Auto merged sql/filesort.cc: Auto merged sql/ha_ndbcluster.h: Auto merged sql/ha_ndbcluster_binlog.cc: Auto merged sql/ha_partition.cc: Auto merged sql/ha_partition.h: Auto merged sql/handler.cc: Auto merged sql/handler.h: Auto merged sql/item.cc: Auto merged sql/item.h: Auto merged sql/item_cmpfunc.cc: Auto merged sql/item_func.cc: Auto merged sql/item_subselect.cc: Auto merged sql/item_sum.cc: Auto merged sql/item_timefunc.cc: Auto merged sql/item_timefunc.h: Auto merged sql/log.cc: Auto merged sql/log_event.cc: Auto merged sql/my_decimal.cc: Auto merged sql/my_decimal.h: Auto merged sql/mysql_priv.h: Auto merged sql/opt_range.cc: Auto merged sql/opt_range.h: Auto merged sql/opt_sum.cc: Auto merged sql/protocol.cc: Auto merged sql/protocol.h: Auto merged sql/rpl_utility.h: Auto merged sql/slave.cc: Auto merged sql/sp.cc: Auto merged sql/sp_head.cc: Auto merged sql/sp_head.h: 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_lex.cc: Auto merged sql/sql_lex.h: Auto merged sql/sql_load.cc: Auto merged sql/sql_parse.cc: Auto merged sql/sql_partition.cc: Auto merged sql/sql_prepare.cc: Auto merged sql/sql_repl.cc: Auto merged sql/sql_select.cc: Auto merged sql/sql_select.h: Auto merged sql/sql_show.cc: Auto merged sql/sql_trigger.cc: Auto merged sql/sql_union.cc: Auto merged sql/sql_update.cc: Auto merged sql/sql_view.cc: Auto merged sql/structs.h: Auto merged sql/table.h: Auto merged sql/tztime.cc: Auto merged sql/unireg.cc: Auto merged storage/example/ha_example.cc: Auto merged storage/federated/ha_federated.cc: Auto merged storage/heap/ha_heap.cc: Auto merged storage/innobase/handler/ha_innodb.h: Auto merged storage/myisam/ha_myisam.cc: Auto merged storage/myisam/sort.c: Auto merged storage/myisammrg/ha_myisammrg.cc: Auto merged storage/ndb/tools/restore/consumer_restore.cpp: Auto merged strings/decimal.c: Auto merged strings/strtod.c: Auto merged include/hash.h: Manual merge with 5.1 main tree. mysys/my_getopt.c: Manual merge with 5.1 main tree. sql/field.h: Manual merge with 5.1 main tree. sql/ha_ndbcluster.cc: Manual merge with 5.1 main tree. sql/item_cmpfunc.h: Manual merge with 5.1 main tree. sql/item_create.cc: Manual merge with 5.1 main tree. sql/item_func.h: Manual merge with 5.1 main tree. sql/key.cc: Manual merge with 5.1 main tree. sql/lock.cc: Manual merge with 5.1 main tree. sql/mysqld.cc: Manual merge with 5.1 main tree. sql/set_var.cc: Manual merge with 5.1 main tree. sql/set_var.h: Manual merge with 5.1 main tree. sql/sql_base.cc: Manual merge with 5.1 main tree. sql/sql_handler.cc: Manual merge with 5.1 main tree. sql/sql_insert.cc: Manual merge with 5.1 main tree. sql/sql_plugin.cc: Manual merge with 5.1 main tree. sql/sql_table.cc: Manual merge with 5.1 main tree. sql/sql_yacc.yy: Manual merge with 5.1 main tree. sql/table.cc: Manual merge with 5.1 main tree. storage/innobase/handler/ha_innodb.cc: Manual merge with 5.1 main tree. storage/ndb/src/mgmsrv/InitConfigFileParser.cpp: Manual merge with 5.1 main tree. storage/ndb/tools/restore/restore_main.cpp: Manual merge with 5.1 main tree.
This commit is contained in:
@@ -114,11 +114,11 @@ pthread_mutex_t example_mutex;
|
||||
Function we use in the creation of our hash to get key.
|
||||
*/
|
||||
|
||||
static byte* example_get_key(EXAMPLE_SHARE *share,uint *length,
|
||||
static uchar* example_get_key(EXAMPLE_SHARE *share,uint *length,
|
||||
my_bool not_used __attribute__((unused)))
|
||||
{
|
||||
*length=share->table_name_length;
|
||||
return (byte*) share->table_name;
|
||||
return (uchar*) share->table_name;
|
||||
}
|
||||
|
||||
|
||||
@@ -172,7 +172,7 @@ static EXAMPLE_SHARE *get_share(const char *table_name, TABLE *table)
|
||||
length=(uint) strlen(table_name);
|
||||
|
||||
if (!(share=(EXAMPLE_SHARE*) hash_search(&example_open_tables,
|
||||
(byte*) table_name,
|
||||
(uchar*) table_name,
|
||||
length)))
|
||||
{
|
||||
if (!(share=(EXAMPLE_SHARE *)
|
||||
@@ -189,7 +189,7 @@ static EXAMPLE_SHARE *get_share(const char *table_name, TABLE *table)
|
||||
share->table_name_length=length;
|
||||
share->table_name=tmp_name;
|
||||
strmov(share->table_name,table_name);
|
||||
if (my_hash_insert(&example_open_tables, (byte*) share))
|
||||
if (my_hash_insert(&example_open_tables, (uchar*) share))
|
||||
goto error;
|
||||
thr_lock_init(&share->lock);
|
||||
pthread_mutex_init(&share->mutex,MY_MUTEX_INIT_FAST);
|
||||
@@ -201,7 +201,7 @@ static EXAMPLE_SHARE *get_share(const char *table_name, TABLE *table)
|
||||
|
||||
error:
|
||||
pthread_mutex_destroy(&share->mutex);
|
||||
my_free((gptr) share, MYF(0));
|
||||
my_free(share, MYF(0));
|
||||
|
||||
return NULL;
|
||||
}
|
||||
@@ -218,10 +218,10 @@ static int free_share(EXAMPLE_SHARE *share)
|
||||
pthread_mutex_lock(&example_mutex);
|
||||
if (!--share->use_count)
|
||||
{
|
||||
hash_delete(&example_open_tables, (byte*) share);
|
||||
hash_delete(&example_open_tables, (uchar*) share);
|
||||
thr_lock_delete(&share->lock);
|
||||
pthread_mutex_destroy(&share->mutex);
|
||||
my_free((gptr) share, MYF(0));
|
||||
my_free(share, MYF(0));
|
||||
}
|
||||
pthread_mutex_unlock(&example_mutex);
|
||||
|
||||
@@ -349,7 +349,7 @@ int ha_example::close(void)
|
||||
sql_insert.cc, sql_select.cc, sql_table.cc, sql_udf.cc and sql_update.cc
|
||||
*/
|
||||
|
||||
int ha_example::write_row(byte * buf)
|
||||
int ha_example::write_row(uchar *buf)
|
||||
{
|
||||
DBUG_ENTER("ha_example::write_row");
|
||||
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
||||
@@ -378,7 +378,7 @@ int ha_example::write_row(byte * buf)
|
||||
@see
|
||||
sql_select.cc, sql_acl.cc, sql_update.cc and sql_insert.cc
|
||||
*/
|
||||
int ha_example::update_row(const byte * old_data, byte * new_data)
|
||||
int ha_example::update_row(const uchar *old_data, uchar *new_data)
|
||||
{
|
||||
|
||||
DBUG_ENTER("ha_example::update_row");
|
||||
@@ -406,7 +406,7 @@ int ha_example::update_row(const byte * old_data, byte * new_data)
|
||||
sql_acl.cc, sql_udf.cc, sql_delete.cc, sql_insert.cc and sql_select.cc
|
||||
*/
|
||||
|
||||
int ha_example::delete_row(const byte * buf)
|
||||
int ha_example::delete_row(const uchar *buf)
|
||||
{
|
||||
DBUG_ENTER("ha_example::delete_row");
|
||||
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
||||
@@ -420,7 +420,7 @@ int ha_example::delete_row(const byte * buf)
|
||||
index.
|
||||
*/
|
||||
|
||||
int ha_example::index_read(byte * buf, const byte * key,
|
||||
int ha_example::index_read(uchar *buf, const uchar *key,
|
||||
key_part_map keypart_map __attribute__((unused)),
|
||||
enum ha_rkey_function find_flag
|
||||
__attribute__((unused)))
|
||||
@@ -435,7 +435,7 @@ int ha_example::index_read(byte * buf, const byte * key,
|
||||
Used to read forward through the index.
|
||||
*/
|
||||
|
||||
int ha_example::index_next(byte * buf)
|
||||
int ha_example::index_next(uchar *buf)
|
||||
{
|
||||
DBUG_ENTER("ha_example::index_next");
|
||||
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
||||
@@ -447,7 +447,7 @@ int ha_example::index_next(byte * buf)
|
||||
Used to read backwards through the index.
|
||||
*/
|
||||
|
||||
int ha_example::index_prev(byte * buf)
|
||||
int ha_example::index_prev(uchar *buf)
|
||||
{
|
||||
DBUG_ENTER("ha_example::index_prev");
|
||||
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
||||
@@ -464,7 +464,7 @@ int ha_example::index_prev(byte * buf)
|
||||
@see
|
||||
opt_range.cc, opt_sum.cc, sql_handler.cc and sql_select.cc
|
||||
*/
|
||||
int ha_example::index_first(byte * buf)
|
||||
int ha_example::index_first(uchar *buf)
|
||||
{
|
||||
DBUG_ENTER("ha_example::index_first");
|
||||
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
||||
@@ -481,7 +481,7 @@ int ha_example::index_first(byte * buf)
|
||||
@see
|
||||
opt_range.cc, opt_sum.cc, sql_handler.cc and sql_select.cc
|
||||
*/
|
||||
int ha_example::index_last(byte * buf)
|
||||
int ha_example::index_last(uchar *buf)
|
||||
{
|
||||
DBUG_ENTER("ha_example::index_last");
|
||||
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
||||
@@ -528,7 +528,7 @@ int ha_example::rnd_end()
|
||||
@see
|
||||
filesort.cc, records.cc, sql_handler.cc, sql_select.cc, sql_table.cc and sql_update.cc
|
||||
*/
|
||||
int ha_example::rnd_next(byte *buf)
|
||||
int ha_example::rnd_next(uchar *buf)
|
||||
{
|
||||
DBUG_ENTER("ha_example::rnd_next");
|
||||
DBUG_RETURN(HA_ERR_END_OF_FILE);
|
||||
@@ -556,7 +556,7 @@ int ha_example::rnd_next(byte *buf)
|
||||
@see
|
||||
filesort.cc, sql_select.cc, sql_delete.cc and sql_update.cc
|
||||
*/
|
||||
void ha_example::position(const byte *record)
|
||||
void ha_example::position(const uchar *record)
|
||||
{
|
||||
DBUG_ENTER("ha_example::position");
|
||||
DBUG_VOID_RETURN;
|
||||
@@ -576,7 +576,7 @@ void ha_example::position(const byte *record)
|
||||
@see
|
||||
filesort.cc, records.cc, sql_insert.cc, sql_select.cc and sql_update.cc
|
||||
*/
|
||||
int ha_example::rnd_pos(byte * buf, byte *pos)
|
||||
int ha_example::rnd_pos(uchar *buf, uchar *pos)
|
||||
{
|
||||
DBUG_ENTER("ha_example::rnd_pos");
|
||||
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
|
||||
|
||||
Reference in New Issue
Block a user