2001-04-11 13:04:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2000
|
|
|
|
* SWsoft company
|
|
|
|
*
|
|
|
|
* This material is provided "as is", with absolutely no warranty expressed
|
|
|
|
* or implied. Any use is at your own risk.
|
|
|
|
*
|
|
|
|
* Permission to use or copy this software for any purpose is hereby granted
|
|
|
|
* without fee, provided the above notices are retained on all copies.
|
|
|
|
* Permission to modify the code and to distribute modified code is granted,
|
|
|
|
* provided the above notices are retained, and a notice that the code was
|
|
|
|
* modified is included with the above copyright notice.
|
|
|
|
*
|
2002-07-23 17:31:22 +02:00
|
|
|
|
|
|
|
This code was modified by the MySQL team
|
|
|
|
*/
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2001-09-30 04:47:34 +02:00
|
|
|
/*
|
|
|
|
The following is needed to not cause conflicts when we include mysqld.cc
|
|
|
|
*/
|
|
|
|
|
2001-04-11 13:04:03 +02:00
|
|
|
#define main main1
|
|
|
|
#define mysql_unix_port mysql_inix_port1
|
|
|
|
#define mysql_port mysql_port1
|
|
|
|
|
2004-05-26 18:40:27 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2004-05-27 01:50:42 +02:00
|
|
|
extern unsigned long max_allowed_packet, net_buffer_length;
|
2004-05-26 18:40:27 +02:00
|
|
|
}
|
|
|
|
|
2002-10-23 13:55:35 +02:00
|
|
|
static int fake_argc= 1;
|
|
|
|
static char *fake_argv[]= {(char *)"", 0};
|
|
|
|
static const char *fake_groups[] = { "server", "embedded", 0 };
|
|
|
|
|
2002-01-09 08:38:48 +01:00
|
|
|
#if defined (__WIN__)
|
|
|
|
#include "../sql/mysqld.cpp"
|
|
|
|
#else
|
2001-06-05 00:34:04 +02:00
|
|
|
#include "../sql/mysqld.cc"
|
2002-01-09 08:38:48 +01:00
|
|
|
#endif
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2003-09-26 12:33:13 +02:00
|
|
|
int check_user(THD *thd, enum enum_server_command command,
|
|
|
|
const char *passwd, uint passwd_len, const char *db,
|
|
|
|
bool check_count);
|
2001-10-02 04:53:00 +02:00
|
|
|
C_MODE_START
|
2002-12-16 14:33:29 +01:00
|
|
|
#include <mysql.h>
|
2003-09-08 15:49:23 +02:00
|
|
|
#undef ER
|
2002-10-13 11:23:55 +02:00
|
|
|
#include "errmsg.h"
|
2003-07-18 13:26:35 +02:00
|
|
|
#include <sql_common.h>
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2004-05-17 09:05:57 +02:00
|
|
|
void embedded_get_error(MYSQL *mysql)
|
|
|
|
{
|
|
|
|
THD *thd=(THD *) mysql->thd;
|
|
|
|
NET *net= &mysql->net;
|
|
|
|
if ((net->last_errno= thd->net.last_errno))
|
|
|
|
{
|
|
|
|
memcpy(net->last_error, thd->net.last_error, sizeof(net->last_error));
|
|
|
|
memcpy(net->sqlstate, thd->net.sqlstate, sizeof(net->sqlstate));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
net->last_error[0]= 0;
|
|
|
|
strmov(net->sqlstate, not_error_sqlstate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static my_bool
|
2003-06-17 18:32:31 +02:00
|
|
|
emb_advanced_command(MYSQL *mysql, enum enum_server_command command,
|
|
|
|
const char *header, ulong header_length,
|
|
|
|
const char *arg, ulong arg_length, my_bool skip_check)
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-10-13 11:23:55 +02:00
|
|
|
my_bool result= 1;
|
2002-12-16 14:33:29 +01:00
|
|
|
THD *thd=(THD *) mysql->thd;
|
2003-09-08 15:49:23 +02:00
|
|
|
NET *net= &mysql->net;
|
2002-10-13 11:23:55 +02:00
|
|
|
|
2004-08-23 10:20:34 +02:00
|
|
|
if (thd->data)
|
|
|
|
{
|
|
|
|
free_rows(thd->data);
|
|
|
|
thd->data= 0;
|
|
|
|
}
|
2002-10-13 11:23:55 +02:00
|
|
|
/* Check that we are calling the client functions in right order */
|
|
|
|
if (mysql->status != MYSQL_STATUS_READY)
|
|
|
|
{
|
2003-09-08 15:49:23 +02:00
|
|
|
strmov(net->last_error,
|
|
|
|
ER(net->last_errno=CR_COMMANDS_OUT_OF_SYNC));
|
2002-10-13 11:23:55 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear result variables */
|
2003-02-10 16:59:16 +01:00
|
|
|
thd->clear_error();
|
2002-10-13 11:23:55 +02:00
|
|
|
mysql->affected_rows= ~(my_ulonglong) 0;
|
2003-07-18 13:26:35 +02:00
|
|
|
mysql->field_count= 0;
|
2004-07-22 17:54:25 +02:00
|
|
|
net->last_errno= 0;
|
2002-10-13 11:23:55 +02:00
|
|
|
|
2001-06-15 21:55:15 +02:00
|
|
|
thd->store_globals(); // Fix if more than one connect
|
2003-09-10 09:58:26 +02:00
|
|
|
/*
|
|
|
|
We have to call free_old_query before we start to fill mysql->fields
|
|
|
|
for new query. In the case of embedded server we collect field data
|
|
|
|
during query execution (not during data retrieval as it is in remote
|
|
|
|
client). So we have to call free_old_query here
|
|
|
|
*/
|
2003-07-18 13:26:35 +02:00
|
|
|
free_old_query(mysql);
|
2003-10-06 13:32:38 +02:00
|
|
|
|
|
|
|
thd->extra_length= arg_length;
|
|
|
|
thd->extra_data= (char *)arg;
|
|
|
|
if (header)
|
2003-09-18 09:25:00 +02:00
|
|
|
{
|
|
|
|
arg= header;
|
|
|
|
arg_length= header_length;
|
|
|
|
}
|
|
|
|
|
2003-06-17 18:32:31 +02:00
|
|
|
result= dispatch_command(command, thd, (char *) arg, arg_length + 1);
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2003-06-17 18:32:31 +02:00
|
|
|
if (!skip_check)
|
2002-12-16 14:33:29 +01:00
|
|
|
result= thd->net.last_errno ? -1 : 0;
|
2001-04-11 13:04:03 +02:00
|
|
|
|
2004-08-19 12:36:05 +02:00
|
|
|
/*
|
|
|
|
If mysql->field_count is set it means the parsing of the query was OK
|
|
|
|
and metadata was returned (see Protocol::send_fields).
|
|
|
|
In this case we postpone the error to be returned in mysql_stmt_store_result
|
|
|
|
(see emb_read_rows) to behave just as standalone server.
|
|
|
|
*/
|
2004-07-22 17:54:25 +02:00
|
|
|
if (!mysql->field_count)
|
|
|
|
embedded_get_error(mysql);
|
2004-01-27 13:51:11 +01:00
|
|
|
mysql->server_status= thd->server_status;
|
2003-06-19 13:38:21 +02:00
|
|
|
mysql->warning_count= ((THD*)mysql->thd)->total_warn_count;
|
2002-10-13 11:23:55 +02:00
|
|
|
return result;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
|
2004-07-22 17:54:25 +02:00
|
|
|
static void emb_flush_use_result(MYSQL *mysql)
|
|
|
|
{
|
|
|
|
MYSQL_DATA *data= ((THD*)(mysql->thd))->data;
|
|
|
|
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
free_rows(data);
|
|
|
|
((THD*)(mysql->thd))->data= NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static MYSQL_DATA *
|
2003-09-16 13:06:25 +02:00
|
|
|
emb_read_rows(MYSQL *mysql, MYSQL_FIELD *mysql_fields __attribute__((unused)),
|
2003-09-18 15:58:02 +02:00
|
|
|
unsigned int fields __attribute__((unused)))
|
2003-09-16 13:06:25 +02:00
|
|
|
{
|
|
|
|
MYSQL_DATA *result= ((THD*)mysql->thd)->data;
|
2004-07-22 17:54:25 +02:00
|
|
|
embedded_get_error(mysql);
|
|
|
|
if (mysql->net.last_errno)
|
|
|
|
return NULL;
|
2003-09-16 13:06:25 +02:00
|
|
|
if (!result)
|
2003-09-17 12:18:18 +02:00
|
|
|
{
|
|
|
|
if (!(result=(MYSQL_DATA*) my_malloc(sizeof(MYSQL_DATA),
|
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
{
|
|
|
|
NET *net = &mysql->net;
|
|
|
|
net->last_errno=CR_OUT_OF_MEMORY;
|
|
|
|
strmov(net->sqlstate, unknown_sqlstate);
|
|
|
|
strmov(net->last_error,ER(net->last_errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2003-09-16 13:06:25 +02:00
|
|
|
*result->prev_ptr= NULL;
|
|
|
|
((THD*)mysql->thd)->data= NULL;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static MYSQL_FIELD *emb_list_fields(MYSQL *mysql)
|
2003-09-16 13:06:25 +02:00
|
|
|
{
|
|
|
|
return mysql->fields;
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static my_bool emb_read_prepare_result(MYSQL *mysql, MYSQL_STMT *stmt)
|
2003-09-16 13:06:25 +02:00
|
|
|
{
|
|
|
|
THD *thd= (THD*)mysql->thd;
|
2003-10-06 09:09:20 +02:00
|
|
|
if (mysql->net.last_errno)
|
|
|
|
return 1;
|
2003-09-16 13:06:25 +02:00
|
|
|
stmt->stmt_id= thd->client_stmt_id;
|
|
|
|
stmt->param_count= thd->client_param_count;
|
|
|
|
stmt->field_count= mysql->field_count;
|
|
|
|
|
|
|
|
if (stmt->field_count != 0)
|
|
|
|
{
|
|
|
|
if (!(mysql->server_status & SERVER_STATUS_AUTOCOMMIT))
|
|
|
|
mysql->server_status|= SERVER_STATUS_IN_TRANS;
|
|
|
|
|
|
|
|
stmt->fields= mysql->fields;
|
|
|
|
stmt->mem_root= mysql->field_alloc;
|
2003-09-18 09:25:00 +02:00
|
|
|
mysql->fields= NULL;
|
2003-09-16 13:06:25 +02:00
|
|
|
}
|
2003-09-17 12:18:18 +02:00
|
|
|
|
2003-09-16 13:06:25 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
Get column lengths of the current row
|
|
|
|
If one uses mysql_use_result, res->lengths contains the length information,
|
|
|
|
else the lengths are calculated from the offset between pointers.
|
|
|
|
**************************************************************************/
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static void emb_fetch_lengths(ulong *to, MYSQL_ROW column,
|
|
|
|
unsigned int field_count)
|
2003-09-16 13:06:25 +02:00
|
|
|
{
|
|
|
|
MYSQL_ROW end;
|
|
|
|
|
|
|
|
for (end=column + field_count; column != end ; column++,to++)
|
|
|
|
*to= *column ? *(uint *)((*column) - sizeof(uint)) : 0;
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static my_bool emb_mysql_read_query_result(MYSQL *mysql)
|
2003-09-16 13:06:25 +02:00
|
|
|
{
|
|
|
|
if (mysql->net.last_errno)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (mysql->field_count)
|
|
|
|
mysql->status=MYSQL_STATUS_GET_RESULT;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static int emb_stmt_execute(MYSQL_STMT *stmt)
|
2003-09-17 12:18:18 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("emb_stmt_execute");
|
|
|
|
THD *thd= (THD*)stmt->mysql->thd;
|
|
|
|
thd->client_param_count= stmt->param_count;
|
2003-09-17 17:48:53 +02:00
|
|
|
thd->client_params= stmt->params;
|
2003-09-17 12:18:18 +02:00
|
|
|
if (emb_advanced_command(stmt->mysql, COM_EXECUTE,0,0,
|
2004-02-17 00:35:17 +01:00
|
|
|
(const char*)&stmt->stmt_id,sizeof(stmt->stmt_id),
|
|
|
|
1) ||
|
|
|
|
emb_mysql_read_query_result(stmt->mysql))
|
2003-09-17 12:18:18 +02:00
|
|
|
{
|
|
|
|
NET *net= &stmt->mysql->net;
|
|
|
|
set_stmt_errmsg(stmt, net->last_error, net->last_errno, net->sqlstate);
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
2004-05-15 14:07:44 +02:00
|
|
|
stmt->affected_rows= stmt->mysql->affected_rows;
|
|
|
|
stmt->insert_id= stmt->mysql->insert_id;
|
2003-09-17 12:18:18 +02:00
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
|
2004-03-28 15:22:04 +02:00
|
|
|
int emb_read_binary_rows(MYSQL_STMT *stmt)
|
2003-09-17 17:48:53 +02:00
|
|
|
{
|
2004-03-28 15:22:04 +02:00
|
|
|
MYSQL_DATA *data;
|
|
|
|
if (!(data= emb_read_rows(stmt->mysql, 0, 0)))
|
|
|
|
return 1;
|
|
|
|
stmt->result= *data;
|
|
|
|
my_free((char *) data, MYF(0));
|
|
|
|
return 0;
|
2003-09-17 17:48:53 +02:00
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
int emb_unbuffered_fetch(MYSQL *mysql, char **row)
|
2003-09-19 11:05:28 +02:00
|
|
|
{
|
|
|
|
MYSQL_DATA *data= ((THD*)mysql->thd)->data;
|
2004-07-22 17:54:25 +02:00
|
|
|
embedded_get_error(mysql);
|
|
|
|
if (mysql->net.last_errno)
|
|
|
|
return mysql->net.last_errno;
|
2003-09-19 11:05:28 +02:00
|
|
|
if (!data || !data->data)
|
|
|
|
{
|
|
|
|
*row= NULL;
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
free_rows(data);
|
|
|
|
((THD*)mysql->thd)->data= NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*row= (char *)data->data->data;
|
|
|
|
data->data= data->data->next;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
static void emb_free_embedded_thd(MYSQL *mysql)
|
2003-09-29 11:09:51 +02:00
|
|
|
{
|
|
|
|
THD *thd= (THD*)mysql->thd;
|
|
|
|
if (thd->data)
|
|
|
|
free_rows(thd->data);
|
2003-10-04 16:28:08 +02:00
|
|
|
thread_count--;
|
2003-09-29 11:09:51 +02:00
|
|
|
delete thd;
|
2004-05-17 09:05:57 +02:00
|
|
|
mysql->thd=0;
|
2003-09-29 11:09:51 +02:00
|
|
|
}
|
|
|
|
|
2004-03-10 18:12:24 +01:00
|
|
|
static const char * emb_read_statistics(MYSQL *mysql)
|
2003-10-04 16:28:08 +02:00
|
|
|
{
|
|
|
|
THD *thd= (THD*)mysql->thd;
|
|
|
|
return thd->net.last_error;
|
|
|
|
}
|
|
|
|
|
2003-12-08 11:25:37 +01:00
|
|
|
|
|
|
|
static MYSQL_RES * emb_mysql_store_result(MYSQL *mysql)
|
|
|
|
{
|
|
|
|
return mysql_store_result(mysql);
|
|
|
|
}
|
|
|
|
|
2004-03-18 13:53:38 +01:00
|
|
|
my_bool emb_next_result(MYSQL *mysql)
|
2004-02-10 14:09:59 +01:00
|
|
|
{
|
|
|
|
THD *thd= (THD*)mysql->thd;
|
|
|
|
DBUG_ENTER("emb_next_result");
|
|
|
|
|
|
|
|
if (emb_advanced_command(mysql, COM_QUERY,0,0,
|
2004-02-17 00:35:17 +01:00
|
|
|
thd->query_rest.ptr(),thd->query_rest.length(),1) ||
|
|
|
|
emb_mysql_read_query_result(mysql))
|
2004-02-10 14:09:59 +01:00
|
|
|
DBUG_RETURN(1);
|
|
|
|
|
|
|
|
DBUG_RETURN(0); /* No more results */
|
|
|
|
}
|
2003-12-08 11:25:37 +01:00
|
|
|
|
2004-02-14 17:26:21 +01:00
|
|
|
int emb_read_change_user_result(MYSQL *mysql,
|
|
|
|
char *buff __attribute__((unused)),
|
|
|
|
const char *passwd __attribute__((unused)))
|
|
|
|
{
|
|
|
|
return mysql_errno(mysql);
|
|
|
|
}
|
|
|
|
|
2003-09-16 13:06:25 +02:00
|
|
|
MYSQL_METHODS embedded_methods=
|
|
|
|
{
|
|
|
|
emb_mysql_read_query_result,
|
|
|
|
emb_advanced_command,
|
|
|
|
emb_read_rows,
|
2003-12-08 11:25:37 +01:00
|
|
|
emb_mysql_store_result,
|
2003-09-16 13:06:25 +02:00
|
|
|
emb_fetch_lengths,
|
2004-07-22 17:54:25 +02:00
|
|
|
emb_flush_use_result,
|
2003-09-16 13:06:25 +02:00
|
|
|
emb_list_fields,
|
2003-09-17 12:18:18 +02:00
|
|
|
emb_read_prepare_result,
|
2003-09-17 17:48:53 +02:00
|
|
|
emb_stmt_execute,
|
2003-09-19 11:05:28 +02:00
|
|
|
emb_read_binary_rows,
|
2003-09-29 11:09:51 +02:00
|
|
|
emb_unbuffered_fetch,
|
2003-10-04 16:28:08 +02:00
|
|
|
emb_free_embedded_thd,
|
2004-03-10 18:12:24 +01:00
|
|
|
emb_read_statistics,
|
2004-02-14 17:26:21 +01:00
|
|
|
emb_next_result,
|
|
|
|
emb_read_change_user_result
|
2003-09-16 13:06:25 +02:00
|
|
|
};
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
C_MODE_END
|
2001-09-30 04:47:34 +02:00
|
|
|
|
2002-12-16 14:33:29 +01:00
|
|
|
void THD::clear_error()
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-12-16 14:33:29 +01:00
|
|
|
net.last_error[0]= 0;
|
|
|
|
net.last_errno= 0;
|
|
|
|
net.report_error= 0;
|
2001-04-11 13:04:03 +02:00
|
|
|
}
|
|
|
|
|
2002-12-05 15:38:49 +01:00
|
|
|
/*
|
|
|
|
Make a copy of array and the strings array points to
|
|
|
|
*/
|
|
|
|
|
|
|
|
char **copy_arguments(int argc, char **argv)
|
|
|
|
{
|
|
|
|
uint length= 0;
|
|
|
|
char **from, **res, **end= argv+argc;
|
|
|
|
|
|
|
|
for (from=argv ; from != end ; from++)
|
|
|
|
length+= strlen(*from);
|
|
|
|
|
|
|
|
if ((res= (char**) my_malloc(sizeof(argv)*(argc+1)+length+argc,
|
|
|
|
MYF(MY_WME))))
|
|
|
|
{
|
|
|
|
char **to= res, *to_str= (char*) (res+argc+1);
|
|
|
|
for (from=argv ; from != end ;)
|
|
|
|
{
|
|
|
|
*to++= to_str;
|
|
|
|
to_str= strmov(to_str, *from++)+1;
|
|
|
|
}
|
|
|
|
*to= 0; // Last ptr should be null
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
|
2002-12-05 15:38:49 +01:00
|
|
|
char ** copy_arguments_ptr= 0;
|
2001-10-02 04:53:00 +02:00
|
|
|
|
2003-12-18 12:51:22 +01:00
|
|
|
int init_embedded_server(int argc, char **argv, char **groups)
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
2004-04-05 12:56:05 +02:00
|
|
|
/*
|
|
|
|
This mess is to allow people to call the init function without
|
|
|
|
having to mess with a fake argv
|
|
|
|
*/
|
2002-11-06 11:42:44 +01:00
|
|
|
int *argcp;
|
|
|
|
char ***argvp;
|
|
|
|
int fake_argc = 1;
|
|
|
|
char *fake_argv[] = { (char *)"", 0 };
|
|
|
|
const char *fake_groups[] = { "server", "embedded", 0 };
|
WL#1264 "Per-thread time zone support infrastructure".
Added basic per-thread time zone functionality (based on public
domain elsie-code). Now user can select current time zone
(from the list of time zones described in system tables).
All NOW-like functions honor this time zone, values of TIMESTAMP
type are interpreted as values in this time zone, so now
our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH
LOCAL TIME ZONE (or proper PostgresSQL type).
WL#1266 "CONVERT_TZ() - basic time with time zone conversion
function".
Fixed problems described in Bug #2336 (Different number of warnings
when inserting bad datetime as string or as number). This required
reworking of datetime realted warning hadling (they now generated
at Field object level not in conversion functions).
Optimization: Now Field class descendants use table->in_use member
instead of current_thd macro.
include/my_global.h:
Added macro for reading of 32-bit ints stored in network order from
unaligned memory location.
include/mysqld_error.h:
Added error-code for invalid timestamp warning and error-code
for wrong or unknown time zone specification.
libmysqld/Makefile.am:
Added main per-thread time zone support file to libmysqld
libmysqld/lib_sql.cc:
Added initialization of time zones infrastructure to embedded server.
mysql-test/r/connect.result:
Updated test result since now mysql database contains more
system tables.
mysql-test/r/date_formats.result:
Now when truncation occurs during conversion to datetime value we are producing Warnings
instead of Notes. Also we are giving more clear warnings about this in some cases.
mysql-test/r/func_sapdb.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling.
mysql-test/r/func_time.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling.
mysql-test/r/select.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling. Also tweaked test a bit to made it less ambigious for reader.
mysql-test/r/system_mysql_db.result:
Updated test result because new system tables holding time zone descriptions were
added.
mysql-test/r/timezone.result:
Updated timezone.test to use new system variable which shows system time zone.
Added test of warning which is produced if someone tries to store non-existing (due
falling into spring time-gap) datetime value into TIMESTAMP field.
mysql-test/r/type_datetime.result:
Separated and extended test of values and warnings produced for bad values stored in
DATETTIME fields.
mysql-test/r/type_time.result:
Now we are producing more consistent warning when we are truncating datetime value while
storing it in TIME field.
mysql-test/r/type_timestamp.result:
Separated and extended test of values and warnings produced for bad
values stored in TIMESTAMP fields.
mysql-test/t/select.test:
Updated test to make it less ambigous for reader.
mysql-test/t/timezone.test:
Updated timezone.test to use new system variable which shows system time zone.
Added test of warning which is produced if someone tries to store non-existing (due
falling into spring time-gap) datetime value into TIMESTAMP field.
mysql-test/t/type_datetime.test:
Separated and extended test of values and warnings produced for bad
values stored in DATETTIME fields.
mysql-test/t/type_timestamp.test:
Separated and extended test of values and warnings produced for bad
values stored in TIMESTAMP fields.
scripts/mysql_create_system_tables.sh:
Added creation of tables with time zone descriptions.
Also added descriptions of time zones used in tests.
scripts/mysql_fix_privilege_tables.sql:
Added mysql.time_zone* tables family.
sql/Makefile.am:
Added files implementing time zone support to server, also added
rules for building of mysql_tzinfo_to_sql converter and test_time
test.
sql/field.cc:
Now we are using per-thread time zone for TIMESTAMP <-> whatever conversion.
Fixed generation of warnings for datetime types (DATETIME/TIMESTAMP/DATE/...) and
any other Field to datetime conversion (now we are generating warnings no in lower
level functions like in str_to_TIME() but in Field methods. This allows generate
better and more consistent warnings and to reuse code of str_to_TIME() outside of
server).
Added 3rd parameter to set_warning() method to be able to not increment cut fields
but still produce a warning. Also added set_datetime_warning() family of auxiliary
methods which allow easier generate datetime related warnings.
Also replaced occurences of current_thd with table->in_use member, added
asserts for catching all places there we need to set table->in_use
accordingly. Renamed fix_datetime() function to number_to_TIME() and
moved it to sql/time.cc there it fits better.
sql/field.h:
Added comment about places where we can use table->in_use member
instead of current_thd.
Added 3rd parameter to Field::set_warning() method and set_datetime_warning()
family of methods.
sql/field_conv.cc:
Field::set_warning() method with 2 arguments was replaced with more
generic set_warning() method with 3 arguments.
sql/ha_berkeley.cc:
Now we set table->in_use for temporary tables so we have to use
table->tmp_table for checking if table is temporary.
sql/item.cc:
Replaced calls to str_to_time() and str_to_TIME() funcs with their warning
generating analogs.
sql/item_create.cc:
Added creation of CONVERT_TZ function as FUNC_ARG3.
sql/item_create.h:
Added creation of CONVERT_TZ function as FUNC_ARG3.
sql/item_timefunc.cc:
Added support of per-thread time zone to NOW-like and FROM_UNIXTIME,
UNIX_TIMESTAMP functions.
Added support for CONVERT_TZ function.
Removed call to str_to_timestamp function which caused non-optimal
behavior in certain cases. Replaced calls to str_to_time() function
with its warning generating analog.
sql/item_timefunc.h:
Added support of per-thread time zone to NOW-like and
FROM_UNIXTIME, UNIX_TIMESTAMP functions.
Added support of CONVERT_TZ function.
sql/lex.h:
Added support of CONVERT_TZ function.
sql/log.cc:
Added support for replication of statements depending on time zone.
sql/mysql_priv.h:
Now including headers with per-thread time zone support functions
and classes. Added portable replacement of time_t - my_time_t type.
Added time zone as one of query distinguishing parameters for
query cache.
Fixed declarations of str_to_TIME, str_to_time and
my_system_gmt_sec (former my_gmt_sec) since now they have one more
out parameter which informs about wrong datetime value or data
truncation during conversion.
Added warning generating version of str_to_TIME() and str_to_time()
functions.
Thrown away str_to_datetime/timestamp functions since they are not
needed any longer. Added number_to_TIME function.
sql/mysqld.cc:
Added per-thread time zone support initialization.
Added new startup parameter --default-time-zone.
sql/set_var.cc:
Added support for per-thread time_zone variable.
Renamed old timezone variable to system_time_zone.
sql/set_var.h:
Added support for per-thread time_zone variable.
sql/share/czech/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/danish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/dutch/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/english/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/estonian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/french/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/german/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/greek/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/hungarian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/italian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/japanese/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/korean/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/norwegian-ny/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/norwegian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/polish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/portuguese/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/romanian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/russian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/serbian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/slovak/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/spanish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/swedish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/ukrainian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/slave.cc:
In order to support replication of statements using time zones in 4.1 we should
ensure that both master and slave have same default time zone.
sql/sql_base.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
sql/sql_cache.cc:
Added time zone as one more query distinguishing parameter
for query cache.
sql/sql_class.cc:
Added THD::time_zone_used variable indicating that this query
uses per thread time zone.
sql/sql_class.h:
Added per-thread time zone variable. Added THD::time_zone_used
variable indicating that this query uses per thread time zone
so if this is updating query the time zone should be logged to
binlog.
sql/sql_insert.cc:
We should set TABLE::in_use member pointing to thread which is called
INSERT DELAYED and not to worker thread.
sql/sql_load.cc:
Field::set_warning() now has one more argument now.
sql/sql_parse.cc:
Resetting THD::time_zone_used variable in the end of query
processing.
sql/sql_select.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
sql/sql_show.cc:
Now using per thread time zone for extended show tables.
sql/time.cc:
Added support for per-thread time zones for TIMESTAMP type and
reworked generation of warnings for TIMESTAMP and DATETIME types.
(Introduced new TIME_to_timestamp() function. Removed hours
normalisation from former my_gmt_sec() since it was not working
and not used anywhere now, but breaks parameter constness, added
to this function generation of warning if we are falling in spring
time-gap. Removed str_to_timestamp and str_to_datetime functions
which are no longer used. Moved fix_datetime function from
sql/field.cc to this file as number_to_TIME() function. Added
out parameter for str_to_TIME and str_to_time functions which
indicates if value was truncated during conversion, removed direct
generation of warnings from this functions.)
sql/unireg.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
BitKeeper/etc/ignore:
Added sql/test_time sql/mysql_tzinfo_to_sql libmysqld/tztime.cc to the ignore list
2004-06-18 08:11:31 +02:00
|
|
|
my_bool acl_error;
|
2002-11-06 11:42:44 +01:00
|
|
|
if (argc)
|
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
argcp= &argc;
|
|
|
|
argvp= (char***) &argv;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
argcp= &fake_argc;
|
|
|
|
argvp= (char ***) &fake_argv;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
|
|
|
if (!groups)
|
2002-12-12 09:49:56 +01:00
|
|
|
groups= (char**) fake_groups;
|
2002-11-06 11:42:44 +01:00
|
|
|
|
2003-12-18 12:51:22 +01:00
|
|
|
my_progname= (char *)"mysql_embedded";
|
2002-11-06 11:42:44 +01:00
|
|
|
|
2003-06-03 12:02:57 +02:00
|
|
|
if (init_common_variables("my", *argcp, *argvp, (const char **)groups))
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get default temporary directory */
|
|
|
|
opt_mysql_tmpdir=getenv("TMPDIR"); /* Use this if possible */
|
|
|
|
#if defined( __WIN__) || defined(OS2)
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TEMP");
|
|
|
|
if (!opt_mysql_tmpdir)
|
|
|
|
opt_mysql_tmpdir=getenv("TMP");
|
|
|
|
#endif
|
|
|
|
if (!opt_mysql_tmpdir || !opt_mysql_tmpdir[0])
|
|
|
|
opt_mysql_tmpdir=(char*) P_tmpdir; /* purecov: inspected */
|
|
|
|
|
|
|
|
umask(((~my_umask) & 0666));
|
|
|
|
if (init_server_components())
|
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_handler_hook = my_message_sql;
|
|
|
|
|
WL#1264 "Per-thread time zone support infrastructure".
Added basic per-thread time zone functionality (based on public
domain elsie-code). Now user can select current time zone
(from the list of time zones described in system tables).
All NOW-like functions honor this time zone, values of TIMESTAMP
type are interpreted as values in this time zone, so now
our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH
LOCAL TIME ZONE (or proper PostgresSQL type).
WL#1266 "CONVERT_TZ() - basic time with time zone conversion
function".
Fixed problems described in Bug #2336 (Different number of warnings
when inserting bad datetime as string or as number). This required
reworking of datetime realted warning hadling (they now generated
at Field object level not in conversion functions).
Optimization: Now Field class descendants use table->in_use member
instead of current_thd macro.
include/my_global.h:
Added macro for reading of 32-bit ints stored in network order from
unaligned memory location.
include/mysqld_error.h:
Added error-code for invalid timestamp warning and error-code
for wrong or unknown time zone specification.
libmysqld/Makefile.am:
Added main per-thread time zone support file to libmysqld
libmysqld/lib_sql.cc:
Added initialization of time zones infrastructure to embedded server.
mysql-test/r/connect.result:
Updated test result since now mysql database contains more
system tables.
mysql-test/r/date_formats.result:
Now when truncation occurs during conversion to datetime value we are producing Warnings
instead of Notes. Also we are giving more clear warnings about this in some cases.
mysql-test/r/func_sapdb.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling.
mysql-test/r/func_time.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling.
mysql-test/r/select.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling. Also tweaked test a bit to made it less ambigious for reader.
mysql-test/r/system_mysql_db.result:
Updated test result because new system tables holding time zone descriptions were
added.
mysql-test/r/timezone.result:
Updated timezone.test to use new system variable which shows system time zone.
Added test of warning which is produced if someone tries to store non-existing (due
falling into spring time-gap) datetime value into TIMESTAMP field.
mysql-test/r/type_datetime.result:
Separated and extended test of values and warnings produced for bad values stored in
DATETTIME fields.
mysql-test/r/type_time.result:
Now we are producing more consistent warning when we are truncating datetime value while
storing it in TIME field.
mysql-test/r/type_timestamp.result:
Separated and extended test of values and warnings produced for bad
values stored in TIMESTAMP fields.
mysql-test/t/select.test:
Updated test to make it less ambigous for reader.
mysql-test/t/timezone.test:
Updated timezone.test to use new system variable which shows system time zone.
Added test of warning which is produced if someone tries to store non-existing (due
falling into spring time-gap) datetime value into TIMESTAMP field.
mysql-test/t/type_datetime.test:
Separated and extended test of values and warnings produced for bad
values stored in DATETTIME fields.
mysql-test/t/type_timestamp.test:
Separated and extended test of values and warnings produced for bad
values stored in TIMESTAMP fields.
scripts/mysql_create_system_tables.sh:
Added creation of tables with time zone descriptions.
Also added descriptions of time zones used in tests.
scripts/mysql_fix_privilege_tables.sql:
Added mysql.time_zone* tables family.
sql/Makefile.am:
Added files implementing time zone support to server, also added
rules for building of mysql_tzinfo_to_sql converter and test_time
test.
sql/field.cc:
Now we are using per-thread time zone for TIMESTAMP <-> whatever conversion.
Fixed generation of warnings for datetime types (DATETIME/TIMESTAMP/DATE/...) and
any other Field to datetime conversion (now we are generating warnings no in lower
level functions like in str_to_TIME() but in Field methods. This allows generate
better and more consistent warnings and to reuse code of str_to_TIME() outside of
server).
Added 3rd parameter to set_warning() method to be able to not increment cut fields
but still produce a warning. Also added set_datetime_warning() family of auxiliary
methods which allow easier generate datetime related warnings.
Also replaced occurences of current_thd with table->in_use member, added
asserts for catching all places there we need to set table->in_use
accordingly. Renamed fix_datetime() function to number_to_TIME() and
moved it to sql/time.cc there it fits better.
sql/field.h:
Added comment about places where we can use table->in_use member
instead of current_thd.
Added 3rd parameter to Field::set_warning() method and set_datetime_warning()
family of methods.
sql/field_conv.cc:
Field::set_warning() method with 2 arguments was replaced with more
generic set_warning() method with 3 arguments.
sql/ha_berkeley.cc:
Now we set table->in_use for temporary tables so we have to use
table->tmp_table for checking if table is temporary.
sql/item.cc:
Replaced calls to str_to_time() and str_to_TIME() funcs with their warning
generating analogs.
sql/item_create.cc:
Added creation of CONVERT_TZ function as FUNC_ARG3.
sql/item_create.h:
Added creation of CONVERT_TZ function as FUNC_ARG3.
sql/item_timefunc.cc:
Added support of per-thread time zone to NOW-like and FROM_UNIXTIME,
UNIX_TIMESTAMP functions.
Added support for CONVERT_TZ function.
Removed call to str_to_timestamp function which caused non-optimal
behavior in certain cases. Replaced calls to str_to_time() function
with its warning generating analog.
sql/item_timefunc.h:
Added support of per-thread time zone to NOW-like and
FROM_UNIXTIME, UNIX_TIMESTAMP functions.
Added support of CONVERT_TZ function.
sql/lex.h:
Added support of CONVERT_TZ function.
sql/log.cc:
Added support for replication of statements depending on time zone.
sql/mysql_priv.h:
Now including headers with per-thread time zone support functions
and classes. Added portable replacement of time_t - my_time_t type.
Added time zone as one of query distinguishing parameters for
query cache.
Fixed declarations of str_to_TIME, str_to_time and
my_system_gmt_sec (former my_gmt_sec) since now they have one more
out parameter which informs about wrong datetime value or data
truncation during conversion.
Added warning generating version of str_to_TIME() and str_to_time()
functions.
Thrown away str_to_datetime/timestamp functions since they are not
needed any longer. Added number_to_TIME function.
sql/mysqld.cc:
Added per-thread time zone support initialization.
Added new startup parameter --default-time-zone.
sql/set_var.cc:
Added support for per-thread time_zone variable.
Renamed old timezone variable to system_time_zone.
sql/set_var.h:
Added support for per-thread time_zone variable.
sql/share/czech/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/danish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/dutch/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/english/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/estonian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/french/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/german/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/greek/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/hungarian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/italian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/japanese/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/korean/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/norwegian-ny/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/norwegian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/polish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/portuguese/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/romanian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/russian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/serbian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/slovak/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/spanish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/swedish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/ukrainian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/slave.cc:
In order to support replication of statements using time zones in 4.1 we should
ensure that both master and slave have same default time zone.
sql/sql_base.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
sql/sql_cache.cc:
Added time zone as one more query distinguishing parameter
for query cache.
sql/sql_class.cc:
Added THD::time_zone_used variable indicating that this query
uses per thread time zone.
sql/sql_class.h:
Added per-thread time zone variable. Added THD::time_zone_used
variable indicating that this query uses per thread time zone
so if this is updating query the time zone should be logged to
binlog.
sql/sql_insert.cc:
We should set TABLE::in_use member pointing to thread which is called
INSERT DELAYED and not to worker thread.
sql/sql_load.cc:
Field::set_warning() now has one more argument now.
sql/sql_parse.cc:
Resetting THD::time_zone_used variable in the end of query
processing.
sql/sql_select.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
sql/sql_show.cc:
Now using per thread time zone for extended show tables.
sql/time.cc:
Added support for per-thread time zones for TIMESTAMP type and
reworked generation of warnings for TIMESTAMP and DATETIME types.
(Introduced new TIME_to_timestamp() function. Removed hours
normalisation from former my_gmt_sec() since it was not working
and not used anywhere now, but breaks parameter constness, added
to this function generation of warning if we are falling in spring
time-gap. Removed str_to_timestamp and str_to_datetime functions
which are no longer used. Moved fix_datetime function from
sql/field.cc to this file as number_to_TIME() function. Added
out parameter for str_to_TIME and str_to_time functions which
indicates if value was truncated during conversion, removed direct
generation of warnings from this functions.)
sql/unireg.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
BitKeeper/etc/ignore:
Added sql/test_time sql/mysql_tzinfo_to_sql libmysqld/tztime.cc to the ignore list
2004-06-18 08:11:31 +02:00
|
|
|
acl_error= 0;
|
2003-09-26 12:33:13 +02:00
|
|
|
#ifndef NO_EMBEDDED_ACCESS_CHECKS
|
WL#1264 "Per-thread time zone support infrastructure".
Added basic per-thread time zone functionality (based on public
domain elsie-code). Now user can select current time zone
(from the list of time zones described in system tables).
All NOW-like functions honor this time zone, values of TIMESTAMP
type are interpreted as values in this time zone, so now
our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH
LOCAL TIME ZONE (or proper PostgresSQL type).
WL#1266 "CONVERT_TZ() - basic time with time zone conversion
function".
Fixed problems described in Bug #2336 (Different number of warnings
when inserting bad datetime as string or as number). This required
reworking of datetime realted warning hadling (they now generated
at Field object level not in conversion functions).
Optimization: Now Field class descendants use table->in_use member
instead of current_thd macro.
include/my_global.h:
Added macro for reading of 32-bit ints stored in network order from
unaligned memory location.
include/mysqld_error.h:
Added error-code for invalid timestamp warning and error-code
for wrong or unknown time zone specification.
libmysqld/Makefile.am:
Added main per-thread time zone support file to libmysqld
libmysqld/lib_sql.cc:
Added initialization of time zones infrastructure to embedded server.
mysql-test/r/connect.result:
Updated test result since now mysql database contains more
system tables.
mysql-test/r/date_formats.result:
Now when truncation occurs during conversion to datetime value we are producing Warnings
instead of Notes. Also we are giving more clear warnings about this in some cases.
mysql-test/r/func_sapdb.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling.
mysql-test/r/func_time.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling.
mysql-test/r/select.result:
New warnings about truncation occured during conversion to datetime value added due
their better handling. Also tweaked test a bit to made it less ambigious for reader.
mysql-test/r/system_mysql_db.result:
Updated test result because new system tables holding time zone descriptions were
added.
mysql-test/r/timezone.result:
Updated timezone.test to use new system variable which shows system time zone.
Added test of warning which is produced if someone tries to store non-existing (due
falling into spring time-gap) datetime value into TIMESTAMP field.
mysql-test/r/type_datetime.result:
Separated and extended test of values and warnings produced for bad values stored in
DATETTIME fields.
mysql-test/r/type_time.result:
Now we are producing more consistent warning when we are truncating datetime value while
storing it in TIME field.
mysql-test/r/type_timestamp.result:
Separated and extended test of values and warnings produced for bad
values stored in TIMESTAMP fields.
mysql-test/t/select.test:
Updated test to make it less ambigous for reader.
mysql-test/t/timezone.test:
Updated timezone.test to use new system variable which shows system time zone.
Added test of warning which is produced if someone tries to store non-existing (due
falling into spring time-gap) datetime value into TIMESTAMP field.
mysql-test/t/type_datetime.test:
Separated and extended test of values and warnings produced for bad
values stored in DATETTIME fields.
mysql-test/t/type_timestamp.test:
Separated and extended test of values and warnings produced for bad
values stored in TIMESTAMP fields.
scripts/mysql_create_system_tables.sh:
Added creation of tables with time zone descriptions.
Also added descriptions of time zones used in tests.
scripts/mysql_fix_privilege_tables.sql:
Added mysql.time_zone* tables family.
sql/Makefile.am:
Added files implementing time zone support to server, also added
rules for building of mysql_tzinfo_to_sql converter and test_time
test.
sql/field.cc:
Now we are using per-thread time zone for TIMESTAMP <-> whatever conversion.
Fixed generation of warnings for datetime types (DATETIME/TIMESTAMP/DATE/...) and
any other Field to datetime conversion (now we are generating warnings no in lower
level functions like in str_to_TIME() but in Field methods. This allows generate
better and more consistent warnings and to reuse code of str_to_TIME() outside of
server).
Added 3rd parameter to set_warning() method to be able to not increment cut fields
but still produce a warning. Also added set_datetime_warning() family of auxiliary
methods which allow easier generate datetime related warnings.
Also replaced occurences of current_thd with table->in_use member, added
asserts for catching all places there we need to set table->in_use
accordingly. Renamed fix_datetime() function to number_to_TIME() and
moved it to sql/time.cc there it fits better.
sql/field.h:
Added comment about places where we can use table->in_use member
instead of current_thd.
Added 3rd parameter to Field::set_warning() method and set_datetime_warning()
family of methods.
sql/field_conv.cc:
Field::set_warning() method with 2 arguments was replaced with more
generic set_warning() method with 3 arguments.
sql/ha_berkeley.cc:
Now we set table->in_use for temporary tables so we have to use
table->tmp_table for checking if table is temporary.
sql/item.cc:
Replaced calls to str_to_time() and str_to_TIME() funcs with their warning
generating analogs.
sql/item_create.cc:
Added creation of CONVERT_TZ function as FUNC_ARG3.
sql/item_create.h:
Added creation of CONVERT_TZ function as FUNC_ARG3.
sql/item_timefunc.cc:
Added support of per-thread time zone to NOW-like and FROM_UNIXTIME,
UNIX_TIMESTAMP functions.
Added support for CONVERT_TZ function.
Removed call to str_to_timestamp function which caused non-optimal
behavior in certain cases. Replaced calls to str_to_time() function
with its warning generating analog.
sql/item_timefunc.h:
Added support of per-thread time zone to NOW-like and
FROM_UNIXTIME, UNIX_TIMESTAMP functions.
Added support of CONVERT_TZ function.
sql/lex.h:
Added support of CONVERT_TZ function.
sql/log.cc:
Added support for replication of statements depending on time zone.
sql/mysql_priv.h:
Now including headers with per-thread time zone support functions
and classes. Added portable replacement of time_t - my_time_t type.
Added time zone as one of query distinguishing parameters for
query cache.
Fixed declarations of str_to_TIME, str_to_time and
my_system_gmt_sec (former my_gmt_sec) since now they have one more
out parameter which informs about wrong datetime value or data
truncation during conversion.
Added warning generating version of str_to_TIME() and str_to_time()
functions.
Thrown away str_to_datetime/timestamp functions since they are not
needed any longer. Added number_to_TIME function.
sql/mysqld.cc:
Added per-thread time zone support initialization.
Added new startup parameter --default-time-zone.
sql/set_var.cc:
Added support for per-thread time_zone variable.
Renamed old timezone variable to system_time_zone.
sql/set_var.h:
Added support for per-thread time_zone variable.
sql/share/czech/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/danish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/dutch/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/english/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/estonian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/french/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/german/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/greek/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/hungarian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/italian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/japanese/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/korean/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/norwegian-ny/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/norwegian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/polish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/portuguese/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/romanian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/russian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/serbian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/slovak/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/spanish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/swedish/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/share/ukrainian/errmsg.txt:
Added error message for barking when incorrect time zone name or
specifiaction is provided and for warning about invalid TIMESTAMP
values (e.g. falling into the spring time-gap).
sql/slave.cc:
In order to support replication of statements using time zones in 4.1 we should
ensure that both master and slave have same default time zone.
sql/sql_base.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
sql/sql_cache.cc:
Added time zone as one more query distinguishing parameter
for query cache.
sql/sql_class.cc:
Added THD::time_zone_used variable indicating that this query
uses per thread time zone.
sql/sql_class.h:
Added per-thread time zone variable. Added THD::time_zone_used
variable indicating that this query uses per thread time zone
so if this is updating query the time zone should be logged to
binlog.
sql/sql_insert.cc:
We should set TABLE::in_use member pointing to thread which is called
INSERT DELAYED and not to worker thread.
sql/sql_load.cc:
Field::set_warning() now has one more argument now.
sql/sql_parse.cc:
Resetting THD::time_zone_used variable in the end of query
processing.
sql/sql_select.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
sql/sql_show.cc:
Now using per thread time zone for extended show tables.
sql/time.cc:
Added support for per-thread time zones for TIMESTAMP type and
reworked generation of warnings for TIMESTAMP and DATETIME types.
(Introduced new TIME_to_timestamp() function. Removed hours
normalisation from former my_gmt_sec() since it was not working
and not used anywhere now, but breaks parameter constness, added
to this function generation of warning if we are falling in spring
time-gap. Removed str_to_timestamp and str_to_datetime functions
which are no longer used. Moved fix_datetime function from
sql/field.cc to this file as number_to_TIME() function. Added
out parameter for str_to_TIME and str_to_time functions which
indicates if value was truncated during conversion, removed direct
generation of warnings from this functions.)
sql/unireg.cc:
Now we are setting TABLE::in_use member for all tables (which assume
calls to Field::store or val_ methods).
BitKeeper/etc/ignore:
Added sql/test_time sql/mysql_tzinfo_to_sql libmysqld/tztime.cc to the ignore list
2004-06-18 08:11:31 +02:00
|
|
|
if (!(acl_error= acl_init((THD *)0, opt_noacl)) &&
|
|
|
|
!opt_noacl)
|
|
|
|
(void) grant_init((THD *)0);
|
|
|
|
#endif
|
|
|
|
if (acl_error || my_tz_init((THD *)0, default_tz_name, opt_bootstrap))
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
2003-09-26 12:33:13 +02:00
|
|
|
|
2002-11-06 11:42:44 +01:00
|
|
|
init_max_user_conn();
|
|
|
|
init_update_queries();
|
|
|
|
|
|
|
|
#ifdef HAVE_DLOPEN
|
2003-09-26 12:33:13 +02:00
|
|
|
#ifndef NO_EMBEDDED_ACCESS_CHECKS
|
2002-11-06 11:42:44 +01:00
|
|
|
if (!opt_noacl)
|
2003-09-26 12:33:13 +02:00
|
|
|
#endif
|
2002-11-06 11:42:44 +01:00
|
|
|
udf_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
(void) thr_setconcurrency(concurrency); // 10 by default
|
|
|
|
|
|
|
|
if (
|
|
|
|
#ifdef HAVE_BERKELEY_DB
|
2004-03-02 11:08:50 +01:00
|
|
|
(have_berkeley_db == SHOW_OPTION_YES) ||
|
2002-11-06 11:42:44 +01:00
|
|
|
#endif
|
|
|
|
(flush_time && flush_time != ~(ulong) 0L))
|
|
|
|
{
|
|
|
|
pthread_t hThread;
|
|
|
|
if (pthread_create(&hThread,&connection_attrib,handle_manager,0))
|
|
|
|
sql_print_error("Warning: Can't create thread to manage maintenance");
|
|
|
|
}
|
|
|
|
|
2003-09-29 18:07:53 +02:00
|
|
|
if (opt_init_file)
|
|
|
|
{
|
|
|
|
if (read_init_file(opt_init_file))
|
|
|
|
{
|
|
|
|
mysql_server_end();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-06 11:42:44 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-18 12:51:22 +01:00
|
|
|
void end_embedded_server()
|
2001-04-11 13:04:03 +02:00
|
|
|
{
|
2002-12-12 09:49:56 +01:00
|
|
|
my_free((char*) copy_arguments_ptr, MYF(MY_ALLOW_ZERO_PTR));
|
|
|
|
copy_arguments_ptr=0;
|
2001-10-02 04:53:00 +02:00
|
|
|
clean_up(0);
|
2001-08-10 18:37:36 +02:00
|
|
|
}
|
|
|
|
|
2001-10-02 04:53:00 +02:00
|
|
|
} /* extern "C" */
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_START
|
2002-06-17 13:24:51 +02:00
|
|
|
void init_embedded_mysql(MYSQL *mysql, int client_flag, char *db)
|
|
|
|
{
|
2002-12-16 14:33:29 +01:00
|
|
|
THD *thd = (THD *)mysql->thd;
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->mysql= mysql;
|
2003-10-04 16:28:08 +02:00
|
|
|
mysql->server_version= server_version;
|
2002-06-17 13:24:51 +02:00
|
|
|
}
|
2002-10-13 11:23:55 +02:00
|
|
|
|
2002-12-16 14:33:29 +01:00
|
|
|
void *create_embedded_thd(int client_flag, char *db)
|
2002-06-17 13:24:51 +02:00
|
|
|
{
|
|
|
|
THD * thd= new THD;
|
|
|
|
thd->thread_id= thread_id++;
|
|
|
|
|
|
|
|
if (thd->store_globals())
|
|
|
|
{
|
|
|
|
fprintf(stderr,"store_globals failed.\n");
|
2004-07-22 21:00:50 +02:00
|
|
|
goto err;
|
2002-06-17 13:24:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
thd->mysys_var= my_thread_var;
|
|
|
|
thd->dbug_thread_id= my_thread_id();
|
|
|
|
thd->thread_stack= (char*) &thd;
|
|
|
|
|
2004-07-22 21:00:50 +02:00
|
|
|
/* TODO - add init_connect command execution */
|
|
|
|
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->proc_info=0; // Remove 'login'
|
|
|
|
thd->command=COM_SLEEP;
|
|
|
|
thd->version=refresh_version;
|
|
|
|
thd->set_time();
|
2004-07-22 21:00:50 +02:00
|
|
|
thd->init_for_queries();
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->client_capabilities= client_flag;
|
|
|
|
|
|
|
|
thd->db= db;
|
2002-06-18 17:35:34 +02:00
|
|
|
thd->db_length= db ? strip_sp(db) : 0;
|
2003-09-26 12:33:13 +02:00
|
|
|
#ifndef NO_EMBEDDED_ACCESS_CHECKS
|
2002-06-17 13:24:51 +02:00
|
|
|
thd->db_access= DB_ACLS;
|
|
|
|
thd->master_access= ~NO_ACCESS;
|
2003-09-26 12:33:13 +02:00
|
|
|
#endif
|
2002-12-16 14:33:29 +01:00
|
|
|
thd->net.query_cache_query= 0;
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2003-09-16 13:06:25 +02:00
|
|
|
thd->data= 0;
|
|
|
|
|
2003-10-04 16:28:08 +02:00
|
|
|
thread_count++;
|
2002-06-17 13:24:51 +02:00
|
|
|
return thd;
|
2004-07-22 21:00:50 +02:00
|
|
|
err:
|
|
|
|
delete(thd);
|
|
|
|
return NULL;
|
2002-06-17 13:24:51 +02:00
|
|
|
}
|
2002-12-16 14:33:29 +01:00
|
|
|
|
2004-01-07 18:30:15 +01:00
|
|
|
#ifdef NO_EMBEDDED_ACCESS_CHECKS
|
|
|
|
int check_embedded_connection(MYSQL *mysql)
|
|
|
|
{
|
|
|
|
THD *thd= (THD*)mysql->thd;
|
|
|
|
thd->host= (char*)my_localhost;
|
|
|
|
thd->host_or_ip= thd->host;
|
2004-01-27 10:46:47 +01:00
|
|
|
thd->user= my_strdup(mysql->user, MYF(0));
|
2004-06-09 20:10:09 +02:00
|
|
|
thd->priv_user= thd->user;
|
2004-05-17 09:05:57 +02:00
|
|
|
return check_user(thd, COM_CONNECT, NULL, 0, thd->db, true);
|
2004-01-07 18:30:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2003-09-26 12:33:13 +02:00
|
|
|
int check_embedded_connection(MYSQL *mysql)
|
|
|
|
{
|
|
|
|
THD *thd= (THD*)mysql->thd;
|
|
|
|
int result;
|
|
|
|
char scramble_buff[SCRAMBLE_LENGTH];
|
|
|
|
int passwd_len;
|
|
|
|
|
2004-01-07 18:30:15 +01:00
|
|
|
if (mysql->options.client_ip)
|
|
|
|
{
|
2004-01-27 10:46:47 +01:00
|
|
|
thd->host= my_strdup(mysql->options.client_ip, MYF(0));
|
|
|
|
thd->ip= my_strdup(thd->host, MYF(0));
|
2004-01-07 18:30:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
thd->host= (char*)my_localhost;
|
2003-09-26 12:33:13 +02:00
|
|
|
thd->host_or_ip= thd->host;
|
|
|
|
|
|
|
|
if (acl_check_host(thd->host,thd->ip))
|
|
|
|
{
|
|
|
|
result= ER_HOST_NOT_PRIVILEGED;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2004-01-27 10:46:47 +01:00
|
|
|
thd->user= my_strdup(mysql->user, MYF(0));
|
2003-09-26 12:33:13 +02:00
|
|
|
if (mysql->passwd && mysql->passwd[0])
|
|
|
|
{
|
|
|
|
memset(thd->scramble, 55, SCRAMBLE_LENGTH); // dummy scramble
|
|
|
|
thd->scramble[SCRAMBLE_LENGTH]= 0;
|
|
|
|
scramble(scramble_buff, thd->scramble, mysql->passwd);
|
|
|
|
passwd_len= SCRAMBLE_LENGTH;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
passwd_len= 0;
|
|
|
|
|
|
|
|
if((result= check_user(thd, COM_CONNECT,
|
|
|
|
scramble_buff, passwd_len, thd->db, true)))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
{
|
|
|
|
NET *net= &mysql->net;
|
|
|
|
memcpy(net->last_error, thd->net.last_error, sizeof(net->last_error));
|
|
|
|
memcpy(net->sqlstate, thd->net.sqlstate, sizeof(net->sqlstate));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
C_MODE_END
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2004-12-21 07:05:58 +01:00
|
|
|
static char *dup_str_aux(MEM_ROOT *root, const char *from, uint length,
|
|
|
|
CHARSET_INFO *fromcs, CHARSET_INFO *tocs)
|
|
|
|
{
|
|
|
|
uint32 dummy32;
|
|
|
|
uint dummy_err;
|
|
|
|
char *result;
|
|
|
|
|
|
|
|
/* 'tocs' is set 0 when client issues SET character_set_results=NULL */
|
|
|
|
if (tocs && String::needs_conversion(0, fromcs, tocs, &dummy32))
|
|
|
|
{
|
|
|
|
uint new_len= (tocs->mbmaxlen * length) / fromcs->mbminlen + 1;
|
|
|
|
result= (char *)alloc_root(root, new_len);
|
|
|
|
length= copy_and_convert(result, new_len,
|
|
|
|
tocs, from, length, fromcs, &dummy_err);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result= (char *)alloc_root(root, length + 1);
|
|
|
|
memcpy(result, from, length);
|
|
|
|
}
|
|
|
|
|
|
|
|
result[length]= 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-17 16:33:25 +01:00
|
|
|
bool Protocol::send_fields(List<Item> *list, uint flag)
|
|
|
|
{
|
|
|
|
List_iterator_fast<Item> it(*list);
|
|
|
|
Item *item;
|
2003-09-16 13:06:25 +02:00
|
|
|
MYSQL_FIELD *client_field;
|
2002-12-17 16:33:25 +01:00
|
|
|
MYSQL *mysql= thd->mysql;
|
2003-09-16 13:06:25 +02:00
|
|
|
MEM_ROOT *field_alloc;
|
2004-12-21 07:05:58 +01:00
|
|
|
CHARSET_INFO *thd_cs= thd->variables.character_set_results;
|
|
|
|
CHARSET_INFO *cs= system_charset_info;
|
2002-12-17 16:33:25 +01:00
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
DBUG_ENTER("send_fields");
|
2002-12-17 16:33:25 +01:00
|
|
|
|
2003-09-29 18:07:53 +02:00
|
|
|
if (!mysql) // bootstrap file handling
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
field_count= list->elements;
|
2003-09-16 13:06:25 +02:00
|
|
|
field_alloc= &mysql->field_alloc;
|
|
|
|
if (!(client_field= thd->mysql->fields=
|
|
|
|
(MYSQL_FIELD *)alloc_root(field_alloc,
|
|
|
|
sizeof(MYSQL_FIELD) * field_count)))
|
2002-12-17 16:33:25 +01:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
while ((item= it++))
|
|
|
|
{
|
|
|
|
Send_field server_field;
|
|
|
|
item->make_field(&server_field);
|
|
|
|
|
2004-12-21 07:05:58 +01:00
|
|
|
client_field->db= dup_str_aux(field_alloc, server_field.db_name,
|
|
|
|
strlen(server_field.db_name), cs, thd_cs);
|
|
|
|
client_field->table= dup_str_aux(field_alloc, server_field.table_name,
|
|
|
|
strlen(server_field.table_name), cs, thd_cs);
|
|
|
|
client_field->name= dup_str_aux(field_alloc, server_field.col_name,
|
|
|
|
strlen(server_field.col_name), cs, thd_cs);
|
|
|
|
client_field->org_table= dup_str_aux(field_alloc, server_field.org_table_name,
|
|
|
|
strlen(server_field.org_table_name), cs, thd_cs);
|
|
|
|
client_field->org_name= dup_str_aux(field_alloc, server_field.org_col_name,
|
|
|
|
strlen(server_field.org_col_name), cs, thd_cs);
|
|
|
|
if (item->collation.collation == &my_charset_bin || thd_cs == NULL)
|
|
|
|
{
|
|
|
|
/* No conversion */
|
|
|
|
client_field->charsetnr= server_field.charsetnr;
|
|
|
|
client_field->length= server_field.length;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* With conversion */
|
|
|
|
client_field->charsetnr= thd_cs->number;
|
|
|
|
uint char_len= server_field.length / item->collation.collation->mbmaxlen;
|
|
|
|
client_field->length= char_len * thd_cs->mbmaxlen;
|
|
|
|
}
|
2002-12-17 16:33:25 +01:00
|
|
|
client_field->type= server_field.type;
|
|
|
|
client_field->flags= server_field.flags;
|
|
|
|
client_field->decimals= server_field.decimals;
|
2003-02-14 10:47:41 +01:00
|
|
|
client_field->db_length= strlen(client_field->db);
|
|
|
|
client_field->table_length= strlen(client_field->table);
|
|
|
|
client_field->name_length= strlen(client_field->name);
|
|
|
|
client_field->org_name_length= strlen(client_field->org_name);
|
|
|
|
client_field->org_table_length= strlen(client_field->org_table);
|
2003-12-01 14:19:10 +01:00
|
|
|
|
2004-12-21 07:05:58 +01:00
|
|
|
client_field->catalog= dup_str_aux(field_alloc, "def", 3, cs, thd_cs);
|
2003-12-01 14:19:10 +01:00
|
|
|
client_field->catalog_length= 3;
|
2004-07-30 22:15:52 +02:00
|
|
|
|
2002-12-17 16:33:25 +01:00
|
|
|
if (INTERNAL_NUM_FIELD(client_field))
|
|
|
|
client_field->flags|= NUM_FLAG;
|
|
|
|
|
|
|
|
if (flag & 2)
|
|
|
|
{
|
|
|
|
char buff[80];
|
|
|
|
String tmp(buff, sizeof(buff), default_charset_info), *res;
|
|
|
|
|
|
|
|
if (!(res=item->val_str(&tmp)))
|
2003-12-01 14:19:10 +01:00
|
|
|
{
|
|
|
|
client_field->def_length= 0;
|
2004-05-15 14:07:44 +02:00
|
|
|
client_field->def= strmake_root(field_alloc, "",0);
|
2003-12-01 14:19:10 +01:00
|
|
|
}
|
2002-12-17 16:33:25 +01:00
|
|
|
else
|
2003-12-01 14:19:10 +01:00
|
|
|
{
|
2004-02-13 14:20:56 +01:00
|
|
|
client_field->def_length= res->length();
|
2004-05-15 14:07:44 +02:00
|
|
|
client_field->def= strmake_root(field_alloc, res->ptr(),
|
|
|
|
client_field->def_length);
|
2003-12-01 14:19:10 +01:00
|
|
|
}
|
2002-12-17 16:33:25 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
client_field->def=0;
|
|
|
|
client_field->max_length= 0;
|
|
|
|
++client_field;
|
|
|
|
}
|
2003-09-16 13:06:25 +02:00
|
|
|
thd->mysql->field_count= field_count;
|
2002-12-17 16:33:25 +01:00
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
DBUG_RETURN(prepare_for_send(list));
|
2002-12-17 16:33:25 +01:00
|
|
|
err:
|
|
|
|
send_error(thd, ER_OUT_OF_RESOURCES); /* purecov: inspected */
|
2003-01-15 09:11:44 +01:00
|
|
|
DBUG_RETURN(1); /* purecov: inspected */
|
2002-12-17 16:33:25 +01:00
|
|
|
}
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
bool Protocol::send_records_num(List<Item> *list, ulonglong records)
|
2003-01-15 09:11:44 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
bool Protocol::write()
|
2002-11-06 11:42:44 +01:00
|
|
|
{
|
2003-09-29 18:07:53 +02:00
|
|
|
if (!thd->mysql) // bootstrap file handling
|
|
|
|
return false;
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
*next_field= 0;
|
|
|
|
return false;
|
2002-11-06 11:42:44 +01:00
|
|
|
}
|
2002-06-17 13:24:51 +02:00
|
|
|
|
2003-09-17 17:48:53 +02:00
|
|
|
bool Protocol_prep::write()
|
|
|
|
{
|
|
|
|
MYSQL_ROWS *cur;
|
|
|
|
MYSQL_DATA *data= thd->data;
|
|
|
|
|
|
|
|
if (!data)
|
|
|
|
{
|
|
|
|
if (!(data= (MYSQL_DATA*) my_malloc(sizeof(MYSQL_DATA),
|
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
alloc= &data->alloc;
|
|
|
|
init_alloc_root(alloc,8192,0); /* Assume rowlength < 8192 */
|
|
|
|
alloc->min_malloc=sizeof(MYSQL_ROWS);
|
|
|
|
data->rows=0;
|
|
|
|
data->fields=field_count;
|
|
|
|
data->prev_ptr= &data->data;
|
|
|
|
thd->data= data;
|
|
|
|
}
|
|
|
|
|
|
|
|
data->rows++;
|
|
|
|
if (!(cur= (MYSQL_ROWS *)alloc_root(alloc, sizeof(MYSQL_ROWS)+packet->length())))
|
|
|
|
{
|
|
|
|
my_error(ER_OUT_OF_RESOURCES,MYF(0));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
cur->data= (MYSQL_ROW)(((char *)cur) + sizeof(MYSQL_ROWS));
|
2003-09-18 09:25:00 +02:00
|
|
|
memcpy(cur->data, packet->ptr()+1, packet->length()-1);
|
2004-12-19 18:28:52 +01:00
|
|
|
cur->length= packet->length(); /* To allow us to do sanity checks */
|
2003-09-17 17:48:53 +02:00
|
|
|
|
|
|
|
*data->prev_ptr= cur;
|
|
|
|
data->prev_ptr= &cur->next;
|
2003-09-19 11:05:28 +02:00
|
|
|
cur->next= 0;
|
|
|
|
|
2003-09-17 17:48:53 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-06-17 13:24:51 +02:00
|
|
|
void
|
2002-10-13 11:23:55 +02:00
|
|
|
send_ok(THD *thd,ha_rows affected_rows,ulonglong id,const char *message)
|
2002-06-17 13:24:51 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("send_ok");
|
|
|
|
MYSQL *mysql= current_thd->mysql;
|
2003-09-29 18:07:53 +02:00
|
|
|
if (!mysql) // bootstrap file handling
|
|
|
|
DBUG_VOID_RETURN;
|
2002-06-17 13:24:51 +02:00
|
|
|
mysql->affected_rows= affected_rows;
|
|
|
|
mysql->insert_id= id;
|
|
|
|
if (message)
|
2004-02-12 13:47:57 +01:00
|
|
|
{
|
2002-12-16 14:33:29 +01:00
|
|
|
strmake(thd->net.last_error, message, sizeof(thd->net.last_error)-1);
|
2004-02-12 13:47:57 +01:00
|
|
|
mysql->info= thd->net.last_error;
|
|
|
|
}
|
2002-06-17 13:24:51 +02:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2002-10-13 11:23:55 +02:00
|
|
|
void
|
|
|
|
send_eof(THD *thd, bool no_flush)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
void Protocol_simple::prepare_for_resend()
|
|
|
|
{
|
2003-09-16 13:06:25 +02:00
|
|
|
MYSQL_ROWS *cur;
|
|
|
|
MYSQL_DATA *data= thd->data;
|
2003-01-15 09:11:44 +01:00
|
|
|
|
|
|
|
DBUG_ENTER("send_data");
|
|
|
|
|
2003-09-16 13:06:25 +02:00
|
|
|
if (!data)
|
|
|
|
{
|
|
|
|
if (!(data= (MYSQL_DATA*) my_malloc(sizeof(MYSQL_DATA),
|
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
alloc= &data->alloc;
|
|
|
|
init_alloc_root(alloc,8192,0); /* Assume rowlength < 8192 */
|
|
|
|
alloc->min_malloc=sizeof(MYSQL_ROWS);
|
|
|
|
data->rows=0;
|
|
|
|
data->fields=field_count;
|
|
|
|
data->prev_ptr= &data->data;
|
|
|
|
thd->data= data;
|
|
|
|
}
|
|
|
|
|
|
|
|
data->rows++;
|
2003-01-15 09:11:44 +01:00
|
|
|
if (!(cur= (MYSQL_ROWS *)alloc_root(alloc, sizeof(MYSQL_ROWS)+(field_count + 1) * sizeof(char *))))
|
|
|
|
{
|
|
|
|
my_error(ER_OUT_OF_RESOURCES,MYF(0));
|
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
cur->data= (MYSQL_ROW)(((char *)cur) + sizeof(MYSQL_ROWS));
|
|
|
|
|
2003-09-16 13:06:25 +02:00
|
|
|
*data->prev_ptr= cur;
|
|
|
|
data->prev_ptr= &cur->next;
|
2003-01-15 09:11:44 +01:00
|
|
|
next_field=cur->data;
|
2003-09-16 13:06:25 +02:00
|
|
|
next_mysql_field= thd->mysql->fields;
|
|
|
|
err:
|
2003-01-15 09:11:44 +01:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2003-01-20 15:47:25 +01:00
|
|
|
bool Protocol_simple::store_null()
|
|
|
|
{
|
|
|
|
*(next_field++)= NULL;
|
|
|
|
++next_mysql_field;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-01-15 09:11:44 +01:00
|
|
|
bool Protocol::net_store_data(const char *from, uint length)
|
|
|
|
{
|
2003-09-10 09:09:24 +02:00
|
|
|
char *field_buf;
|
2003-09-29 18:07:53 +02:00
|
|
|
if (!thd->mysql) // bootstrap file handling
|
|
|
|
return false;
|
|
|
|
|
2003-09-11 06:46:31 +02:00
|
|
|
if (!(field_buf=alloc_root(alloc, length + sizeof(uint) + 1)))
|
2003-01-20 15:47:25 +01:00
|
|
|
return true;
|
2003-09-10 09:09:24 +02:00
|
|
|
*(uint *)field_buf= length;
|
|
|
|
*next_field= field_buf + sizeof(uint);
|
2003-01-20 15:47:25 +01:00
|
|
|
memcpy(*next_field, from, length);
|
2003-09-11 06:46:31 +02:00
|
|
|
(*next_field)[length]= 0;
|
2003-01-20 15:47:25 +01:00
|
|
|
if (next_mysql_field->max_length < length)
|
|
|
|
next_mysql_field->max_length=length;
|
|
|
|
++next_field;
|
|
|
|
++next_mysql_field;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|