Commit 93e033fa authored by monty@mashka.mysql.fi's avatar monty@mashka.mysql.fi

Merge work:/my/mysql-4.0 into mashka.mysql.fi:/home/my/mysql-4.0

parents f7f940fc a01a0840
...@@ -50364,6 +50364,9 @@ each individual 4.0.x release. ...@@ -50364,6 +50364,9 @@ each individual 4.0.x release.
@itemize @bullet @itemize @bullet
@item @item
Fixed bug with the @code{--slow-log} when logging an administrator command
(like @code{FLUSH TABLES}).
@item
Fixed a bug that @code{OPTIMIZE} of locked and modified table, Fixed a bug that @code{OPTIMIZE} of locked and modified table,
reported table corruption. reported table corruption.
@item @item
...@@ -50372,6 +50375,12 @@ Fixed a bug in my_getopt in handling of special prefixes (--skip-, --enable-). ...@@ -50372,6 +50375,12 @@ Fixed a bug in my_getopt in handling of special prefixes (--skip-, --enable-).
similar options. similar options.
@item @item
Fixed bug in checking for output file name of the @code{tee} option. Fixed bug in checking for output file name of the @code{tee} option.
@item
Added some more optimisation to use index for
@code{SELECT ... FROM many_tables .. ORDER BY key limit #}
@item
Fixed problem in @code{SHOW OPEN TABLES} when a user didn't have access right
to one of the opened tables.
@end itemize @end itemize
@node News-4.0.3, News-4.0.2, News-4.0.4, News-4.0.x @node News-4.0.3, News-4.0.2, News-4.0.4, News-4.0.x
...@@ -1857,7 +1857,7 @@ com_tee(String *buffer, char *line __attribute__((unused))) ...@@ -1857,7 +1857,7 @@ com_tee(String *buffer, char *line __attribute__((unused)))
while (end > file_name && (isspace(end[-1]) || iscntrl(end[-1]))) while (end > file_name && (isspace(end[-1]) || iscntrl(end[-1])))
end--; end--;
end[0]= 0; end[0]= 0;
if (!strlen(file_name)) if (end == file_name)
{ {
printf("No outfile specified!\n"); printf("No outfile specified!\n");
return 0; return 0;
......
...@@ -1351,13 +1351,12 @@ mysql_init(MYSQL *mysql) ...@@ -1351,13 +1351,12 @@ mysql_init(MYSQL *mysql)
if (!(mysql=(MYSQL*) my_malloc(sizeof(*mysql),MYF(MY_WME | MY_ZEROFILL)))) if (!(mysql=(MYSQL*) my_malloc(sizeof(*mysql),MYF(MY_WME | MY_ZEROFILL))))
return 0; return 0;
mysql->free_me=1; mysql->free_me=1;
mysql->net.vio = 0;
} }
else else
bzero((char*) (mysql),sizeof(*(mysql))); bzero((char*) (mysql),sizeof(*(mysql)));
mysql->options.connect_timeout=CONNECT_TIMEOUT; mysql->options.connect_timeout=CONNECT_TIMEOUT;
mysql->last_used_con = mysql->next_slave = mysql->master = mysql; mysql->last_used_con = mysql->next_slave = mysql->master = mysql;
mysql->last_used_slave = 0;
/* /*
By default, we are a replication pivot. The caller must reset it By default, we are a replication pivot. The caller must reset it
after we return if this is not the case. after we return if this is not the case.
......
...@@ -186,7 +186,7 @@ static struct my_option my_long_options[] = ...@@ -186,7 +186,7 @@ static struct my_option my_long_options[] =
(gptr*) &check_param.max_data_file_length, (gptr*) &check_param.max_data_file_length,
0, GET_LL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, 0, GET_LL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
{"extend-check", 'e', {"extend-check", 'e',
"Try to recover every possible row from the data file. Normally this will also find a lot of garbage rows; Don't use this option if you are not totally desperate.", "If used when checking a table, ensure that the table is 100 percent consistent, which will take a long time. If used when repairing a table, try to recover every possible row from the data file. Normally this will also find a lot of garbage rows; Don't use this option with repair if you are not totally desperate.",
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
{"fast", 'F', {"fast", 'F',
"Check only tables that haven't been closed properly.", "Check only tables that haven't been closed properly.",
......
drop table if exists t1;
create table t1(objid BIGINT not null, tablename varchar(64), oid BIGINT not null, test BIGINT, PRIMARY KEY (objid), UNIQUE(tablename)) type=BDB;
insert into t1 values(1, 't1',4,9);
insert into t1 values(2, 'metatable',1,9);
insert into t1 values(3, 'metaindex',1,9 );
select * from t1;
objid tablename oid test objid tablename oid test
1 t1 4 9 1 t1 4 9
2 metatable 1 9 2 metatable 1 9
3 metaindex 1 9 3 metaindex 1 9
alter table t1 drop column test;
select * from t1;
objid tablename oid objid tablename oid
1 t1 4 1 t1 4
2 metatable 1 2 metatable 1
3 metaindex 1 3 metaindex 1
drop table t1;
...@@ -92,7 +92,8 @@ NULL NULL NULL ...@@ -92,7 +92,8 @@ NULL NULL NULL
0 0 0 0
select id >= 0 and id <= 5 as grp,count(*) from t1 group by grp; select id >= 0 and id <= 5 as grp,count(*) from t1 group by grp;
grp count(*) grp count(*)
0 7 NULL 1
0 6
1 6 1 6
SELECT DISTINCT FACILITY FROM t1; SELECT DISTINCT FACILITY FROM t1;
FACILITY FACILITY
......
...@@ -134,6 +134,6 @@ handler t2 read next; ...@@ -134,6 +134,6 @@ handler t2 read next;
a b a b
19 fff 19 fff
handler t2 read last; handler t2 read last;
You have an error in your SQL syntax near '' at line 1 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
handler t2 close; handler t2 close;
drop table if exists t1; drop table if exists t1;
...@@ -134,6 +134,6 @@ handler t2 read next; ...@@ -134,6 +134,6 @@ handler t2 read next;
a b a b
19 fff 19 fff
handler t2 read last; handler t2 read last;
You have an error in your SQL syntax near '' at line 1 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
handler t2 close; handler t2 close;
drop table if exists t1; drop table if exists t1;
...@@ -1718,7 +1718,7 @@ insert into tmp select * from t3; ...@@ -1718,7 +1718,7 @@ insert into tmp select * from t3;
insert into t3 select * from tmp; insert into t3 select * from tmp;
alter table t3 add t2nr int not null auto_increment primary key first; alter table t3 add t2nr int not null auto_increment primary key first;
drop table tmp; drop table tmp;
SET OPTION SQL_BIG_TABLES=1; SET SQL_BIG_TABLES=1;
select distinct concat(fld3," ",fld3) as namn from t2,t3 where t2.fld1=t3.t2nr order by namn limit 10; select distinct concat(fld3," ",fld3) as namn from t2,t3 where t2.fld1=t3.t2nr order by namn limit 10;
namn namn
Abraham Abraham Abraham Abraham
...@@ -1731,7 +1731,7 @@ ammonium ammonium ...@@ -1731,7 +1731,7 @@ ammonium ammonium
analyzable analyzable analyzable analyzable
animals animals animals animals
animized animized animized animized
SET OPTION SQL_BIG_TABLES=0; SET SQL_BIG_TABLES=0;
select distinct concat(fld3," ",fld3) from t2,t3 where t2.fld1=t3.t2nr order by fld3 limit 10; select distinct concat(fld3," ",fld3) from t2,t3 where t2.fld1=t3.t2nr order by fld3 limit 10;
concat(fld3," ",fld3) concat(fld3," ",fld3)
Abraham Abraham Abraham Abraham
...@@ -1768,7 +1768,7 @@ attendants 1 ...@@ -1768,7 +1768,7 @@ attendants 1
bedlam 1 bedlam 1
bedpost 1 bedpost 1
boasted 1 boasted 1
SET OPTION SQL_BIG_TABLES=1; SET SQL_BIG_TABLES=1;
select distinct fld3,count(*) from t2 group by companynr,fld3 limit 10; select distinct fld3,count(*) from t2 group by companynr,fld3 limit 10;
fld3 count(*) fld3 count(*)
affixed 1 affixed 1
...@@ -1781,7 +1781,7 @@ attendants 1 ...@@ -1781,7 +1781,7 @@ attendants 1
bedlam 1 bedlam 1
bedpost 1 bedpost 1
boasted 1 boasted 1
SET OPTION SQL_BIG_TABLES=0; SET SQL_BIG_TABLES=0;
select distinct fld3,repeat("a",length(fld3)),count(*) from t2 group by companynr,fld3 limit 100,10; select distinct fld3,repeat("a",length(fld3)),count(*) from t2 group by companynr,fld3 limit 100,10;
fld3 repeat("a",length(fld3)) count(*) fld3 repeat("a",length(fld3)) count(*)
circus aaaaaa 1 circus aaaaaa 1
...@@ -1809,6 +1809,18 @@ explain select t3.t2nr,fld3 from t2,t3 where t2.companynr = 34 and t2.fld1=t3.t2 ...@@ -1809,6 +1809,18 @@ explain select t3.t2nr,fld3 from t2,t3 where t2.companynr = 34 and t2.fld1=t3.t2
table type possible_keys key key_len ref rows Extra table type possible_keys key key_len ref rows Extra
t2 ALL fld1 NULL NULL NULL 1199 where used; Using temporary; Using filesort t2 ALL fld1 NULL NULL NULL 1199 where used; Using temporary; Using filesort
t3 eq_ref PRIMARY PRIMARY 4 t2.fld1 1 where used; Using index t3 eq_ref PRIMARY PRIMARY 4 t2.fld1 1 where used; Using index
explain select * from t3 as t1,t3 where t1.period=t3.period order by t3.period;
table type possible_keys key key_len ref rows Extra
t1 ALL period NULL NULL NULL 41810 Using temporary; Using filesort
t3 ref period period 4 t1.period 4181
explain select * from t3 as t1,t3 where t1.period=t3.period order by t3.period limit 10;
table type possible_keys key key_len ref rows Extra
t3 index period period 4 NULL 41810
t1 ref period period 4 t3.period 4181
explain select * from t3 as t1,t3 where t1.period=t3.period order by t1.period limit 10;
table type possible_keys key key_len ref rows Extra
t1 index period period 4 NULL 41810
t3 ref period period 4 t1.period 4181
select period from t1; select period from t1;
period period
9410 9410
......
...@@ -16,7 +16,7 @@ table type possible_keys key key_len ref rows Extra ...@@ -16,7 +16,7 @@ table type possible_keys key key_len ref rows Extra
t1 const UNIQ UNIQ 8 const 1 t1 const UNIQ UNIQ 8 const 1
drop table t1; drop table t1;
select x'hello'; select x'hello';
You have an error in your SQL syntax near 'x'hello'' at line 1 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'x'hello'' at line 1
select 0xfg; select 0xfg;
Unknown column '0xfg' in 'field list' Unknown column '0xfg' in 'field list'
create table t1 select 1 as x, 2 as xx; create table t1 select 1 as x, 2 as xx;
......
-- source include/have_bdb.inc
# #
# Small basic test for ALTER TABLE bug .. # Test of problem when shutting down mysqld at once after ALTER TABLE
# #
-- source include/have_bdb.inc
drop table if exists t1; drop table if exists t1;
create table t1(objid BIGINT not null, tablename varchar(64), oid BIGINT not null, test BIGINT, PRIMARY KEY (objid), UNIQUE(tablename)) type=BDB; create table t1(objid BIGINT not null, tablename varchar(64), oid BIGINT not null, test BIGINT, PRIMARY KEY (objid), UNIQUE(tablename)) type=BDB;
insert into t1 values(1, 't1',4,9); insert into t1 values(1, 't1',4,9);
...@@ -10,3 +9,5 @@ insert into t1 values(2, 'metatable',1,9); ...@@ -10,3 +9,5 @@ insert into t1 values(2, 'metatable',1,9);
insert into t1 values(3, 'metaindex',1,9 ); insert into t1 values(3, 'metaindex',1,9 );
select * from t1; select * from t1;
alter table t1 drop column test; alter table t1 drop column test;
# Now we do a reboot and continue with the next test
#
# Note that this test uses tables from the previous test
# This is to test that the table t1 survives a reboot of MySQL
# The options in the -master.opt file are just there to force the reboot
#
-- source include/have_bdb.inc -- source include/have_bdb.inc
select * from t1; select * from t1;
drop table t1; drop table t1;
\ No newline at end of file
...@@ -1405,9 +1405,9 @@ drop table tmp; ...@@ -1405,9 +1405,9 @@ drop table tmp;
# big table done # big table done
SET OPTION SQL_BIG_TABLES=1; SET SQL_BIG_TABLES=1;
select distinct concat(fld3," ",fld3) as namn from t2,t3 where t2.fld1=t3.t2nr order by namn limit 10; select distinct concat(fld3," ",fld3) as namn from t2,t3 where t2.fld1=t3.t2nr order by namn limit 10;
SET OPTION SQL_BIG_TABLES=0; SET SQL_BIG_TABLES=0;
select distinct concat(fld3," ",fld3) from t2,t3 where t2.fld1=t3.t2nr order by fld3 limit 10; select distinct concat(fld3," ",fld3) from t2,t3 where t2.fld1=t3.t2nr order by fld3 limit 10;
select distinct fld5 from t2 limit 10; select distinct fld5 from t2 limit 10;
...@@ -1416,9 +1416,9 @@ select distinct fld5 from t2 limit 10; ...@@ -1416,9 +1416,9 @@ select distinct fld5 from t2 limit 10;
# #
select distinct fld3,count(*) from t2 group by companynr,fld3 limit 10; select distinct fld3,count(*) from t2 group by companynr,fld3 limit 10;
SET OPTION SQL_BIG_TABLES=1; # Force use of MyISAM SET SQL_BIG_TABLES=1; # Force use of MyISAM
select distinct fld3,count(*) from t2 group by companynr,fld3 limit 10; select distinct fld3,count(*) from t2 group by companynr,fld3 limit 10;
SET OPTION SQL_BIG_TABLES=0; SET SQL_BIG_TABLES=0;
select distinct fld3,repeat("a",length(fld3)),count(*) from t2 group by companynr,fld3 limit 100,10; select distinct fld3,repeat("a",length(fld3)),count(*) from t2 group by companynr,fld3 limit 100,10;
# #
...@@ -1439,6 +1439,14 @@ select distinct fld3 from t2,t3 where t2.companynr = 34 and t2.fld1=t3.t2nr orde ...@@ -1439,6 +1439,14 @@ select distinct fld3 from t2,t3 where t2.companynr = 34 and t2.fld1=t3.t2nr orde
explain select t3.t2nr,fld3 from t2,t3 where t2.companynr = 34 and t2.fld1=t3.t2nr order by t3.t2nr,fld3; explain select t3.t2nr,fld3 from t2,t3 where t2.companynr = 34 and t2.fld1=t3.t2nr order by t3.t2nr,fld3;
#
# Some test with ORDER BY and limit
#
explain select * from t3 as t1,t3 where t1.period=t3.period order by t3.period;
explain select * from t3 as t1,t3 where t1.period=t3.period order by t3.period limit 10;
explain select * from t3 as t1,t3 where t1.period=t3.period order by t1.period limit 10;
# #
# Search with a constant table. # Search with a constant table.
# #
......
...@@ -1120,6 +1120,8 @@ Item_cond::fix_fields(THD *thd,TABLE_LIST *tables) ...@@ -1120,6 +1120,8 @@ Item_cond::fix_fields(THD *thd,TABLE_LIST *tables)
used_tables_cache|=item->used_tables(); used_tables_cache|=item->used_tables();
with_sum_func= with_sum_func || item->with_sum_func; with_sum_func= with_sum_func || item->with_sum_func;
const_item_cache&=item->const_item(); const_item_cache&=item->const_item();
if (item->maybe_null)
maybe_null=1;
} }
if (thd) if (thd)
thd->cond_count+=list.elements; thd->cond_count+=list.elements;
......
...@@ -377,11 +377,10 @@ char mysql_real_data_home[FN_REFLEN], ...@@ -377,11 +377,10 @@ char mysql_real_data_home[FN_REFLEN],
blob_newline,f_fyllchar,max_sort_char,*mysqld_user,*mysqld_chroot, blob_newline,f_fyllchar,max_sort_char,*mysqld_user,*mysqld_chroot,
*opt_init_file; *opt_init_file;
char *language_ptr= language; char *language_ptr= language;
char mysql_data_home_buff[2], *mysql_data_home=mysql_real_data_home;
#ifndef EMBEDDED_LIBRARY #ifndef EMBEDDED_LIBRARY
char mysql_data_home_buff[2], *mysql_data_home=mysql_data_home_buff;
bool mysql_embedded=0; bool mysql_embedded=0;
#else #else
char *mysql_data_home=mysql_real_data_home;
bool mysql_embedded=1; bool mysql_embedded=1;
#endif #endif
...@@ -1959,6 +1958,7 @@ int main(int argc, char **argv) ...@@ -1959,6 +1958,7 @@ int main(int argc, char **argv)
{ {
unireg_abort(1); /* purecov: inspected */ unireg_abort(1); /* purecov: inspected */
} }
mysql_data_home= mysql_data_home_buff;
mysql_data_home[0]=FN_CURLIB; // all paths are relative from here mysql_data_home[0]=FN_CURLIB; // all paths are relative from here
mysql_data_home[1]=0; mysql_data_home[1]=0;
server_init(); server_init();
......
...@@ -150,7 +150,7 @@ ...@@ -150,7 +150,7 @@
"Table '%-.64s.%-.64s' doesn't exist", "Table '%-.64s.%-.64s' doesn't exist",
"There is no such grant defined for user '%-.32s' on host '%-.64s' on table '%-.64s'", "There is no such grant defined for user '%-.32s' on host '%-.64s' on table '%-.64s'",
"The used command is not allowed with this MySQL version", "The used command is not allowed with this MySQL version",
"You have an error in your SQL syntax", "You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use",
"Delayed insert thread couldn't get requested lock for table %-.64s", "Delayed insert thread couldn't get requested lock for table %-.64s",
"Too many delayed threads in use", "Too many delayed threads in use",
"Aborted connection %ld to db: '%-.64s' user: '%-.32s' (%-.64s)", "Aborted connection %ld to db: '%-.64s' user: '%-.32s' (%-.64s)",
......
...@@ -157,7 +157,7 @@ OPEN_TABLE_LIST *list_open_tables(THD *thd, const char *wild) ...@@ -157,7 +157,7 @@ OPEN_TABLE_LIST *list_open_tables(THD *thd, const char *wild)
table_list.db= (char*) entry->table_cache_key; table_list.db= (char*) entry->table_cache_key;
table_list.real_name= entry->real_name; table_list.real_name= entry->real_name;
table_list.grant.privilege=0; table_list.grant.privilege=0;
if (check_table_access(thd,SELECT_ACL | EXTRA_ACL,&table_list)) if (check_table_access(thd,SELECT_ACL | EXTRA_ACL,&table_list,1))
continue; continue;
/* need to check if we haven't already listed it */ /* need to check if we haven't already listed it */
......
...@@ -356,6 +356,18 @@ CHANGED_TABLE_LIST* THD::changed_table_dup(TABLE *table) ...@@ -356,6 +356,18 @@ CHANGED_TABLE_LIST* THD::changed_table_dup(TABLE *table)
} }
#ifdef SIGNAL_WITH_VIO_CLOSE
void THD::close_active_vio()
{
safe_mutex_assert_owner(&LOCK_delete);
if (active_vio)
{
vio_close(active_vio);
active_vio = 0;
}
}
#endif
/***************************************************************************** /*****************************************************************************
** Functions to provide a interface to select results ** Functions to provide a interface to select results
*****************************************************************************/ *****************************************************************************/
......
...@@ -475,15 +475,6 @@ class THD :public ilink { ...@@ -475,15 +475,6 @@ class THD :public ilink {
active_vio = 0; active_vio = 0;
pthread_mutex_unlock(&LOCK_delete); pthread_mutex_unlock(&LOCK_delete);
} }
inline void close_active_vio()
{
safe_mutex_assert_owner(&LOCK_delete);
if (active_vio)
{
vio_close(active_vio);
active_vio = 0;
}
}
#endif #endif
void awake(bool prepare_to_die); void awake(bool prepare_to_die);
inline const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex, inline const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex,
......
...@@ -1937,14 +1937,10 @@ mysql_execute_command(void) ...@@ -1937,14 +1937,10 @@ mysql_execute_command(void)
goto error; goto error;
// Set privilege for the WHERE clause // Set privilege for the WHERE clause
tables->grant.want_privilege=(SELECT_ACL & ~tables->grant.privilege); tables->grant.want_privilege=(SELECT_ACL & ~tables->grant.privilege);
/* TRUNCATE ends previous transaction */ res = mysql_delete(thd,tables, select_lex->where,
if (lex->sql_command == SQLCOM_TRUNCATE && end_active_trans(thd)) (ORDER*) select_lex->order_list.first,
res= -1; select_lex->select_limit, lex->lock_option,
else select_lex->options);
res = mysql_delete(thd,tables, select_lex->where,
(ORDER*) select_lex->order_list.first,
select_lex->select_limit, lex->lock_option,
select_lex->options);
break; break;
} }
case SQLCOM_DELETE_MULTI: case SQLCOM_DELETE_MULTI:
......
...@@ -620,8 +620,7 @@ mysql_select(THD *thd,TABLE_LIST *tables,List<Item> &fields,COND *conds, ...@@ -620,8 +620,7 @@ mysql_select(THD *thd,TABLE_LIST *tables,List<Item> &fields,COND *conds,
(join.const_tables == join.tables || (join.const_tables == join.tables ||
(simple_order && (simple_order &&
test_if_skip_sort_order(&join.join_tab[join.const_tables], order, test_if_skip_sort_order(&join.join_tab[join.const_tables], order,
(join.const_tables != join.tables - 1 || (join.select_options & OPTION_FOUND_ROWS) ?
(join.select_options & OPTION_FOUND_ROWS)) ?
HA_POS_ERROR : thd->select_limit,0)))) HA_POS_ERROR : thd->select_limit,0))))
order=0; order=0;
select_describe(&join,need_tmp, select_describe(&join,need_tmp,
...@@ -876,7 +875,6 @@ mysql_select(THD *thd,TABLE_LIST *tables,List<Item> &fields,COND *conds, ...@@ -876,7 +875,6 @@ mysql_select(THD *thd,TABLE_LIST *tables,List<Item> &fields,COND *conds,
if (create_sort_index(&join.join_tab[join.const_tables], if (create_sort_index(&join.join_tab[join.const_tables],
group ? group : order, group ? group : order,
(having || group || (having || group ||
join.const_tables != join.tables - 1 ||
(join.select_options & OPTION_FOUND_ROWS)) ? (join.select_options & OPTION_FOUND_ROWS)) ?
HA_POS_ERROR : thd->select_limit)) HA_POS_ERROR : thd->select_limit))
goto err; /* purecov: inspected */ goto err; /* purecov: inspected */
...@@ -2018,7 +2016,8 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count, ...@@ -2018,7 +2016,8 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count,
join->positions[idx].key=best_key; join->positions[idx].key=best_key;
join->positions[idx].table= s; join->positions[idx].table= s;
if (!best_key && idx == join->const_tables && if (!best_key && idx == join->const_tables &&
s->table == join->sort_by_table) s->table == join->sort_by_table &&
join->thd->select_limit >= records)
join->sort_by_table= (TABLE*) 1; // Must use temporary table join->sort_by_table= (TABLE*) 1; // Must use temporary table
/* /*
......
...@@ -20,6 +20,9 @@ ...@@ -20,6 +20,9 @@
#include "mysql_priv.h" #include "mysql_priv.h"
#include <hash.h> #include <hash.h>
#include <myisam.h> #include <myisam.h>
#ifdef HAVE_BERKELEY_DB
#include <ha_berkeley.h>
#endif
#include <assert.h> #include <assert.h>
#ifdef __WIN__ #ifdef __WIN__
...@@ -258,10 +261,32 @@ static int sort_keys(KEY *a, KEY *b) ...@@ -258,10 +261,32 @@ static int sort_keys(KEY *a, KEY *b)
} }
/***************************************************************************** /*
* Create a table. Create a table
* If one creates a temporary table, this is automaticly opened
****************************************************************************/ SYNOPSIS
mysql_create_table()
thd Thread object
db Database
table_name Table name
create_info Create information (like MAX_ROWS)
fields List of fields to create
keys List of keys to create
tmp_table Set to 1 if this is a temporary table
no_log Don't log the query to binary log.
DESCRIPTION
If one creates a temporary table, this is automaticly opened
no_log is needed for the case of CREATE ... SELECT,
as the logging will be done later in sql_insert.cc
select_field_count is also used for CREATE ... SELECT,
and must be zero for standard create of table.
RETURN VALUES
0 ok
-1 error
*/
int mysql_create_table(THD *thd,const char *db, const char *table_name, int mysql_create_table(THD *thd,const char *db, const char *table_name,
HA_CREATE_INFO *create_info, HA_CREATE_INFO *create_info,
...@@ -1885,9 +1910,16 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name, ...@@ -1885,9 +1910,16 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name,
#ifdef HAVE_BERKELEY_DB #ifdef HAVE_BERKELEY_DB
if (old_db_type == DB_TYPE_BERKELEY_DB) if (old_db_type == DB_TYPE_BERKELEY_DB)
{ {
extern bool berkeley_flush_logs(void); (void) berkeley_flush_logs();
(void)berkeley_flush_logs(); /*
table=open_ltable(thd,table_list,TL_READ); For the alter table to be properly flushed to the logs, we
have to open the new table. If not, we get a problem on server
shutdown.
*/
if (!open_tables(thd, table_list)) // Should always succeed
{
close_thread_table(thd, &table_list->table);
}
} }
#endif #endif
table_list->table=0; // For query cache table_list->table=0; // For query cache
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment