2006-04-11 15:45:10 +02:00
|
|
|
/* Copyright (C) 2006 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-03-02 11:20:23 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
|
|
/* Create a MARIA table */
|
|
|
|
|
|
|
|
#include "ma_ftdefs.h"
|
|
|
|
#include "ma_sp_defs.h"
|
2006-08-11 01:16:51 +02:00
|
|
|
#include <my_bit.h>
|
2007-01-18 20:38:14 +01:00
|
|
|
#include "ma_blockrec.h"
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
#if defined(MSDOS) || defined(__WIN__)
|
|
|
|
#ifdef __WIN__
|
|
|
|
#include <fcntl.h>
|
|
|
|
#else
|
|
|
|
#include <process.h> /* Prototype for getpid */
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#include <m_ctype.h>
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static int compare_columns(MARIA_COLUMNDEF **a, MARIA_COLUMNDEF **b);
|
|
|
|
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
/*
|
|
|
|
Old options is used when recreating database, from maria_chk
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-04-19 12:18:56 +02:00
|
|
|
int maria_create(const char *name, enum data_file_type datafile_type,
|
2007-01-18 20:38:14 +01:00
|
|
|
uint keys,MARIA_KEYDEF *keydefs,
|
2007-04-19 12:18:56 +02:00
|
|
|
uint columns, MARIA_COLUMNDEF *columndef,
|
2007-01-18 20:38:14 +01:00
|
|
|
uint uniques, MARIA_UNIQUEDEF *uniquedefs,
|
|
|
|
MARIA_CREATE_INFO *ci,uint flags)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
register uint i,j;
|
|
|
|
File dfile,file;
|
2007-04-05 13:38:05 +02:00
|
|
|
int errpos,save_errno, create_mode= O_RDWR | O_TRUNC, res;
|
2006-04-11 15:45:10 +02:00
|
|
|
myf create_flag;
|
2007-01-18 20:38:14 +01:00
|
|
|
uint length,max_key_length,packed,pack_bytes,pointer,real_length_diff,
|
2006-04-11 15:45:10 +02:00
|
|
|
key_length,info_length,key_segs,options,min_key_length_skip,
|
|
|
|
base_pos,long_varchar_count,varchar_length,
|
2007-06-05 13:35:34 +02:00
|
|
|
unique_key_parts,fulltext_keys,offset, not_block_record_extra_length;
|
2007-01-18 20:38:14 +01:00
|
|
|
uint max_field_lengths, extra_header_size;
|
2006-04-11 15:45:10 +02:00
|
|
|
ulong reclength, real_reclength,min_pack_length;
|
|
|
|
char filename[FN_REFLEN],linkname[FN_REFLEN], *linkname_ptr;
|
|
|
|
ulong pack_reclength;
|
|
|
|
ulonglong tot_length,max_rows, tmp;
|
|
|
|
enum en_fieldtype type;
|
2007-04-19 12:18:56 +02:00
|
|
|
enum data_file_type org_datafile_type= datafile_type;
|
2006-04-11 15:45:10 +02:00
|
|
|
MARIA_SHARE share;
|
|
|
|
MARIA_KEYDEF *keydef,tmp_keydef;
|
|
|
|
MARIA_UNIQUEDEF *uniquedef;
|
|
|
|
HA_KEYSEG *keyseg,tmp_keyseg;
|
2007-04-19 12:18:56 +02:00
|
|
|
MARIA_COLUMNDEF *column, *end_column;
|
2006-04-11 15:45:10 +02:00
|
|
|
ulong *rec_per_key_part;
|
2007-01-18 20:38:14 +01:00
|
|
|
my_off_t key_root[HA_MAX_POSSIBLE_KEY];
|
2006-04-11 15:45:10 +02:00
|
|
|
MARIA_CREATE_INFO tmp_create_info;
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
my_bool tmp_table= FALSE; /* cache for presence of HA_OPTION_TMP_TABLE */
|
2007-06-05 13:35:34 +02:00
|
|
|
my_bool forced_packed;
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
myf sync_dir= MY_SYNC_DIR;
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_ENTER("maria_create");
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
DBUG_PRINT("enter", ("keys: %u columns: %u uniques: %u flags: %u",
|
|
|
|
keys, columns, uniques, flags));
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-04-19 12:18:56 +02:00
|
|
|
DBUG_ASSERT(maria_block_size && maria_block_size % IO_SIZE == 0);
|
2007-01-18 20:38:14 +01:00
|
|
|
LINT_INIT(dfile);
|
|
|
|
LINT_INIT(file);
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!ci)
|
|
|
|
{
|
|
|
|
bzero((char*) &tmp_create_info,sizeof(tmp_create_info));
|
|
|
|
ci=&tmp_create_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (keys + uniques > MARIA_MAX_KEY || columns == 0)
|
|
|
|
{
|
|
|
|
DBUG_RETURN(my_errno=HA_WRONG_CREATE_OPTION);
|
|
|
|
}
|
|
|
|
errpos=0;
|
|
|
|
options=0;
|
|
|
|
bzero((byte*) &share,sizeof(share));
|
|
|
|
|
|
|
|
if (flags & HA_DONT_TOUCH_DATA)
|
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
org_datafile_type= ci->org_data_file_type;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!(ci->old_options & HA_OPTION_TEMP_COMPRESS_RECORD))
|
|
|
|
options=ci->old_options &
|
|
|
|
(HA_OPTION_COMPRESS_RECORD | HA_OPTION_PACK_RECORD |
|
|
|
|
HA_OPTION_READ_ONLY_DATA | HA_OPTION_CHECKSUM |
|
|
|
|
HA_OPTION_TMP_TABLE | HA_OPTION_DELAY_KEY_WRITE);
|
|
|
|
else
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
/* Uncompressing rows */
|
2006-04-11 15:45:10 +02:00
|
|
|
options=ci->old_options &
|
|
|
|
(HA_OPTION_CHECKSUM | HA_OPTION_TMP_TABLE | HA_OPTION_DELAY_KEY_WRITE);
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ci->reloc_rows > ci->max_rows)
|
|
|
|
ci->reloc_rows=ci->max_rows; /* Check if wrong parameter */
|
|
|
|
|
|
|
|
if (!(rec_per_key_part=
|
|
|
|
(ulong*) my_malloc((keys + uniques)*HA_MAX_KEY_SEG*sizeof(long),
|
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
DBUG_RETURN(my_errno);
|
|
|
|
|
|
|
|
/* Start by checking fields and field-types used */
|
|
|
|
|
2007-06-05 13:35:34 +02:00
|
|
|
varchar_length=long_varchar_count=packed= not_block_record_extra_length=
|
2007-01-18 20:38:14 +01:00
|
|
|
pack_reclength= max_field_lengths= 0;
|
|
|
|
reclength= min_pack_length= ci->null_bytes;
|
2007-06-05 13:35:34 +02:00
|
|
|
forced_packed= 0;
|
2007-01-18 20:38:14 +01:00
|
|
|
|
2007-04-19 12:18:56 +02:00
|
|
|
for (column= columndef, end_column= column + columns ;
|
|
|
|
column != end_column ;
|
|
|
|
column++)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-01-18 20:38:14 +01:00
|
|
|
/* Fill in not used struct parts */
|
2007-04-19 12:18:56 +02:00
|
|
|
column->offset= reclength;
|
|
|
|
column->empty_pos= 0;
|
|
|
|
column->empty_bit= 0;
|
|
|
|
column->fill_length= column->length;
|
|
|
|
|
|
|
|
reclength+= column->length;
|
|
|
|
type= column->type;
|
|
|
|
if (type == FIELD_SKIP_PRESPACE && datafile_type == BLOCK_RECORD)
|
2007-01-18 20:38:14 +01:00
|
|
|
type= FIELD_NORMAL; /* SKIP_PRESPACE not supported */
|
|
|
|
|
|
|
|
if (type != FIELD_NORMAL && type != FIELD_CHECK)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
column->empty_pos= packed/8;
|
|
|
|
column->empty_bit= (1 << (packed & 7));
|
2006-04-11 15:45:10 +02:00
|
|
|
if (type == FIELD_BLOB)
|
|
|
|
{
|
2007-06-05 13:35:34 +02:00
|
|
|
forced_packed= 1;
|
2007-01-18 20:38:14 +01:00
|
|
|
packed++;
|
2006-04-11 15:45:10 +02:00
|
|
|
share.base.blobs++;
|
|
|
|
if (pack_reclength != INT_MAX32)
|
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
if (column->length == 4+portable_sizeof_char_ptr)
|
2006-04-11 15:45:10 +02:00
|
|
|
pack_reclength= INT_MAX32;
|
|
|
|
else
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
/* Add max possible blob length */
|
2007-04-19 12:18:56 +02:00
|
|
|
pack_reclength+= (1 << ((column->length-
|
|
|
|
portable_sizeof_char_ptr)*8));
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2007-04-19 12:18:56 +02:00
|
|
|
max_field_lengths+= (column->length - portable_sizeof_char_ptr);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
else if (type == FIELD_SKIP_PRESPACE ||
|
|
|
|
type == FIELD_SKIP_ENDSPACE)
|
|
|
|
{
|
2007-06-05 13:35:34 +02:00
|
|
|
forced_packed= 1;
|
2007-04-19 12:18:56 +02:00
|
|
|
max_field_lengths+= column->length > 255 ? 2 : 1;
|
2007-06-05 13:35:34 +02:00
|
|
|
not_block_record_extra_length++;
|
2007-01-18 20:38:14 +01:00
|
|
|
packed++;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
else if (type == FIELD_VARCHAR)
|
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
varchar_length+= column->length-1; /* Used for min_pack_length */
|
2006-04-11 15:45:10 +02:00
|
|
|
pack_reclength++;
|
2007-06-05 13:35:34 +02:00
|
|
|
not_block_record_extra_length++;
|
2007-01-18 20:38:14 +01:00
|
|
|
max_field_lengths++;
|
|
|
|
packed++;
|
2007-04-19 12:18:56 +02:00
|
|
|
column->fill_length= 1;
|
2006-04-11 15:45:10 +02:00
|
|
|
/* We must test for 257 as length includes pack-length */
|
2007-04-19 12:18:56 +02:00
|
|
|
if (test(column->length >= 257))
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
long_varchar_count++;
|
2007-01-18 20:38:14 +01:00
|
|
|
max_field_lengths++;
|
2007-04-19 12:18:56 +02:00
|
|
|
column->fill_length= 2;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
}
|
2007-04-05 13:38:05 +02:00
|
|
|
else if (type == FIELD_SKIP_ZERO)
|
|
|
|
packed++;
|
|
|
|
else
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-06-05 13:35:34 +02:00
|
|
|
if (!column->null_bit)
|
2007-04-19 12:18:56 +02:00
|
|
|
min_pack_length+= column->length;
|
2007-06-05 13:35:34 +02:00
|
|
|
else
|
|
|
|
not_block_record_extra_length+= column->length;
|
2007-04-19 12:18:56 +02:00
|
|
|
column->empty_pos= 0;
|
|
|
|
column->empty_bit= 0;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* FIELD_NORMAL */
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
if (!column->null_bit)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
2007-06-05 13:35:34 +02:00
|
|
|
min_pack_length+= column->length;
|
2007-01-18 20:38:14 +01:00
|
|
|
share.base.fixed_not_null_fields++;
|
2007-04-19 12:18:56 +02:00
|
|
|
share.base.fixed_not_null_fields_length+= column->length;
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
2007-06-05 13:35:34 +02:00
|
|
|
else
|
|
|
|
not_block_record_extra_length+= column->length;
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2007-06-05 13:35:34 +02:00
|
|
|
|
|
|
|
if (datafile_type == STATIC_RECORD && forced_packed)
|
|
|
|
{
|
|
|
|
/* Can't use fixed length records, revert to block records */
|
|
|
|
datafile_type= BLOCK_RECORD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (datafile_type == DYNAMIC_RECORD)
|
|
|
|
options|= HA_OPTION_PACK_RECORD; /* Must use packed records */
|
|
|
|
|
|
|
|
if (datafile_type == STATIC_RECORD)
|
|
|
|
{
|
|
|
|
/* We can't use checksum with static length rows */
|
|
|
|
flags&= ~HA_CREATE_CHECKSUM;
|
|
|
|
options&= ~HA_OPTION_CHECKSUM;
|
|
|
|
min_pack_length+= varchar_length;
|
|
|
|
packed= 0;
|
|
|
|
}
|
|
|
|
if (datafile_type != BLOCK_RECORD)
|
|
|
|
min_pack_length+= not_block_record_extra_length;
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
if ((packed & 7) == 1)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
Not optimal packing, try to remove a 1 byte length zero-field as
|
|
|
|
this will get same record length, but smaller pack overhead
|
|
|
|
*/
|
2007-04-19 12:18:56 +02:00
|
|
|
while (column != columndef)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
column--;
|
|
|
|
if (column->type == (int) FIELD_SKIP_ZERO && column->length == 1)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
column->type=(int) FIELD_NORMAL;
|
|
|
|
column->empty_pos= 0;
|
|
|
|
column->empty_bit= 0;
|
2006-04-11 15:45:10 +02:00
|
|
|
packed--;
|
|
|
|
min_pack_length++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-08 16:03:39 +02:00
|
|
|
|
|
|
|
if (flags & HA_CREATE_TMP_TABLE)
|
|
|
|
{
|
|
|
|
options|= HA_OPTION_TMP_TABLE;
|
|
|
|
create_mode|= O_EXCL | O_NOFOLLOW;
|
|
|
|
/* temp tables are not crash-safe (dropped at restart) */
|
|
|
|
ci->transactional= FALSE;
|
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
share.base.null_bytes= ci->null_bytes;
|
|
|
|
share.base.original_null_bytes= ci->null_bytes;
|
|
|
|
share.base.transactional= ci->transactional;
|
|
|
|
share.base.max_field_lengths= max_field_lengths;
|
|
|
|
share.base.field_offsets= 0; /* for future */
|
|
|
|
|
|
|
|
if (pack_reclength != INT_MAX32)
|
|
|
|
pack_reclength+= max_field_lengths + long_varchar_count;
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
if (flags & HA_CREATE_CHECKSUM || (options & HA_OPTION_CHECKSUM))
|
|
|
|
{
|
|
|
|
options|= HA_OPTION_CHECKSUM;
|
|
|
|
min_pack_length++;
|
2007-01-18 20:38:14 +01:00
|
|
|
pack_reclength++;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
if (flags & HA_CREATE_DELAY_KEY_WRITE)
|
|
|
|
options|= HA_OPTION_DELAY_KEY_WRITE;
|
|
|
|
if (flags & HA_CREATE_RELIES_ON_SQL_LAYER)
|
|
|
|
options|= HA_OPTION_RELIES_ON_SQL_LAYER;
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
pack_bytes= (packed + 7) / 8;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (pack_reclength != INT_MAX32)
|
2007-01-18 20:38:14 +01:00
|
|
|
pack_reclength+= reclength+pack_bytes +
|
2006-04-11 15:45:10 +02:00
|
|
|
test(test_all_bits(options, HA_OPTION_CHECKSUM | HA_PACK_RECORD));
|
2007-01-18 20:38:14 +01:00
|
|
|
min_pack_length+= pack_bytes;
|
|
|
|
/* Calculate min possible row length for rows-in-block */
|
|
|
|
extra_header_size= MAX_FIXED_HEADER_SIZE;
|
|
|
|
if (ci->transactional)
|
|
|
|
extra_header_size= TRANS_MAX_FIXED_HEADER_SIZE;
|
|
|
|
share.base.min_row_length= (extra_header_size + share.base.null_bytes +
|
|
|
|
pack_bytes);
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!ci->data_file_length && ci->max_rows)
|
|
|
|
{
|
|
|
|
if (pack_reclength == INT_MAX32 ||
|
|
|
|
(~(ulonglong) 0)/ci->max_rows < (ulonglong) pack_reclength)
|
|
|
|
ci->data_file_length= ~(ulonglong) 0;
|
|
|
|
else
|
|
|
|
ci->data_file_length=(ulonglong) ci->max_rows*pack_reclength;
|
|
|
|
}
|
|
|
|
else if (!ci->max_rows)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
if (datafile_type == BLOCK_RECORD)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
uint rows_per_page= ((maria_block_size - PAGE_OVERHEAD_SIZE) /
|
|
|
|
(min_pack_length + extra_header_size +
|
|
|
|
DIR_ENTRY_SIZE));
|
|
|
|
ulonglong data_file_length= ci->data_file_length;
|
2007-04-19 12:18:56 +02:00
|
|
|
if (!data_file_length)
|
2007-01-18 20:38:14 +01:00
|
|
|
data_file_length= ((((ulonglong) 1 << ((BLOCK_RECORD_POINTER_SIZE-1) *
|
|
|
|
8)) -1));
|
|
|
|
if (rows_per_page > 0)
|
|
|
|
{
|
|
|
|
set_if_smaller(rows_per_page, MAX_ROWS_PER_PAGE);
|
2007-04-19 12:18:56 +02:00
|
|
|
ci->max_rows= data_file_length / maria_block_size * rows_per_page;
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
|
|
|
else
|
2007-04-19 12:18:56 +02:00
|
|
|
ci->max_rows= data_file_length / (min_pack_length +
|
|
|
|
extra_header_size +
|
|
|
|
DIR_ENTRY_SIZE);
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ci->max_rows=(ha_rows) (ci->data_file_length/(min_pack_length +
|
|
|
|
((options &
|
|
|
|
HA_OPTION_PACK_RECORD) ?
|
|
|
|
3 : 0)));
|
|
|
|
}
|
|
|
|
max_rows= (ulonglong) ci->max_rows;
|
2007-04-19 12:18:56 +02:00
|
|
|
if (datafile_type == BLOCK_RECORD)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
/* The + 1 is for record position withing page */
|
|
|
|
pointer= maria_get_pointer_length((ci->data_file_length /
|
|
|
|
maria_block_size), 3) + 1;
|
|
|
|
set_if_smaller(pointer, BLOCK_RECORD_POINTER_SIZE);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
if (!max_rows)
|
|
|
|
max_rows= (((((ulonglong) 1 << ((pointer-1)*8)) -1) * maria_block_size) /
|
|
|
|
min_pack_length);
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
if (datafile_type != STATIC_RECORD)
|
2007-01-18 20:38:14 +01:00
|
|
|
pointer= maria_get_pointer_length(ci->data_file_length,
|
|
|
|
maria_data_pointer_size);
|
|
|
|
else
|
|
|
|
pointer= maria_get_pointer_length(ci->max_rows, maria_data_pointer_size);
|
|
|
|
if (!max_rows)
|
|
|
|
max_rows= ((((ulonglong) 1 << (pointer*8)) -1) / min_pack_length);
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
real_reclength=reclength;
|
2007-04-19 12:18:56 +02:00
|
|
|
if (datafile_type == STATIC_RECORD)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (reclength <= pointer)
|
|
|
|
reclength=pointer+1; /* reserve place for delete link */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
reclength+= long_varchar_count; /* We need space for varchar! */
|
|
|
|
|
|
|
|
max_key_length=0; tot_length=0 ; key_segs=0;
|
|
|
|
fulltext_keys=0;
|
|
|
|
share.state.rec_per_key_part=rec_per_key_part;
|
|
|
|
share.state.key_root=key_root;
|
2007-01-18 20:38:14 +01:00
|
|
|
share.state.key_del= HA_OFFSET_ERROR;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (uniques)
|
2007-01-18 20:38:14 +01:00
|
|
|
max_key_length= MARIA_UNIQUE_HASH_LENGTH + pointer;
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
for (i=0, keydef=keydefs ; i < keys ; i++ , keydef++)
|
|
|
|
{
|
|
|
|
share.state.key_root[i]= HA_OFFSET_ERROR;
|
|
|
|
min_key_length_skip=length=real_length_diff=0;
|
|
|
|
key_length=pointer;
|
|
|
|
if (keydef->flag & HA_SPATIAL)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SPATIAL
|
|
|
|
/* BAR TODO to support 3D and more dimensions in the future */
|
|
|
|
uint sp_segs=SPDIMS*2;
|
|
|
|
keydef->flag=HA_SPATIAL;
|
|
|
|
|
|
|
|
if (flags & HA_DONT_TOUCH_DATA)
|
|
|
|
{
|
|
|
|
/*
|
2007-01-18 20:38:14 +01:00
|
|
|
Called by maria_chk - i.e. table structure was taken from
|
|
|
|
MYI file and SPATIAL key *does have* additional sp_segs keysegs.
|
|
|
|
keydef->seg here points right at the GEOMETRY segment,
|
|
|
|
so we only need to decrease keydef->keysegs.
|
|
|
|
(see maria_recreate_table() in _ma_check.c)
|
2006-04-11 15:45:10 +02:00
|
|
|
*/
|
|
|
|
keydef->keysegs-=sp_segs-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j=0, keyseg=keydef->seg ; (int) j < keydef->keysegs ;
|
|
|
|
j++, keyseg++)
|
|
|
|
{
|
|
|
|
if (keyseg->type != HA_KEYTYPE_BINARY &&
|
|
|
|
keyseg->type != HA_KEYTYPE_VARBINARY1 &&
|
|
|
|
keyseg->type != HA_KEYTYPE_VARBINARY2)
|
|
|
|
{
|
|
|
|
my_errno=HA_WRONG_CREATE_OPTION;
|
2007-04-05 13:38:05 +02:00
|
|
|
goto err_no_lock;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
keydef->keysegs+=sp_segs;
|
|
|
|
key_length+=SPLEN*sp_segs;
|
|
|
|
length++; /* At least one length byte */
|
|
|
|
min_key_length_skip+=SPLEN*2*SPDIMS;
|
|
|
|
#else
|
|
|
|
my_errno= HA_ERR_UNSUPPORTED;
|
2007-04-05 13:38:05 +02:00
|
|
|
goto err_no_lock;
|
2006-04-11 15:45:10 +02:00
|
|
|
#endif /*HAVE_SPATIAL*/
|
|
|
|
}
|
|
|
|
else if (keydef->flag & HA_FULLTEXT)
|
|
|
|
{
|
|
|
|
keydef->flag=HA_FULLTEXT | HA_PACK_KEY | HA_VAR_LENGTH_KEY;
|
|
|
|
options|=HA_OPTION_PACK_KEYS; /* Using packed keys */
|
|
|
|
|
|
|
|
for (j=0, keyseg=keydef->seg ; (int) j < keydef->keysegs ;
|
|
|
|
j++, keyseg++)
|
|
|
|
{
|
|
|
|
if (keyseg->type != HA_KEYTYPE_TEXT &&
|
|
|
|
keyseg->type != HA_KEYTYPE_VARTEXT1 &&
|
|
|
|
keyseg->type != HA_KEYTYPE_VARTEXT2)
|
|
|
|
{
|
|
|
|
my_errno=HA_WRONG_CREATE_OPTION;
|
2007-04-05 13:38:05 +02:00
|
|
|
goto err_no_lock;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
if (!(keyseg->flag & HA_BLOB_PART) &&
|
|
|
|
(keyseg->type == HA_KEYTYPE_VARTEXT1 ||
|
|
|
|
keyseg->type == HA_KEYTYPE_VARTEXT2))
|
|
|
|
{
|
|
|
|
/* Make a flag that this is a VARCHAR */
|
|
|
|
keyseg->flag|= HA_VAR_LENGTH_PART;
|
|
|
|
/* Store in bit_start number of bytes used to pack the length */
|
|
|
|
keyseg->bit_start= ((keyseg->type == HA_KEYTYPE_VARTEXT1)?
|
|
|
|
1 : 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fulltext_keys++;
|
|
|
|
key_length+= HA_FT_MAXBYTELEN+HA_FT_WLEN;
|
|
|
|
length++; /* At least one length byte */
|
|
|
|
min_key_length_skip+=HA_FT_MAXBYTELEN;
|
|
|
|
real_length_diff=HA_FT_MAXBYTELEN-FT_MAX_WORD_LEN_FOR_SORT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Test if prefix compression */
|
|
|
|
if (keydef->flag & HA_PACK_KEY)
|
|
|
|
{
|
|
|
|
/* Can't use space_compression on number keys */
|
|
|
|
if ((keydef->seg[0].flag & HA_SPACE_PACK) &&
|
|
|
|
keydef->seg[0].type == (int) HA_KEYTYPE_NUM)
|
|
|
|
keydef->seg[0].flag&= ~HA_SPACE_PACK;
|
|
|
|
|
|
|
|
/* Only use HA_PACK_KEY when first segment is a variable length key */
|
|
|
|
if (!(keydef->seg[0].flag & (HA_SPACE_PACK | HA_BLOB_PART |
|
|
|
|
HA_VAR_LENGTH_PART)))
|
|
|
|
{
|
|
|
|
/* pack relative to previous key */
|
|
|
|
keydef->flag&= ~HA_PACK_KEY;
|
|
|
|
keydef->flag|= HA_BINARY_PACK_KEY | HA_VAR_LENGTH_KEY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
keydef->seg[0].flag|=HA_PACK_KEY; /* for easyer intern test */
|
|
|
|
keydef->flag|=HA_VAR_LENGTH_KEY;
|
|
|
|
options|=HA_OPTION_PACK_KEYS; /* Using packed keys */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (keydef->flag & HA_BINARY_PACK_KEY)
|
|
|
|
options|=HA_OPTION_PACK_KEYS; /* Using packed keys */
|
|
|
|
|
|
|
|
if (keydef->flag & HA_AUTO_KEY && ci->with_auto_increment)
|
|
|
|
share.base.auto_key=i+1;
|
|
|
|
for (j=0, keyseg=keydef->seg ; j < keydef->keysegs ; j++, keyseg++)
|
|
|
|
{
|
|
|
|
/* numbers are stored with high by first to make compression easier */
|
|
|
|
switch (keyseg->type) {
|
|
|
|
case HA_KEYTYPE_SHORT_INT:
|
|
|
|
case HA_KEYTYPE_LONG_INT:
|
|
|
|
case HA_KEYTYPE_FLOAT:
|
|
|
|
case HA_KEYTYPE_DOUBLE:
|
|
|
|
case HA_KEYTYPE_USHORT_INT:
|
|
|
|
case HA_KEYTYPE_ULONG_INT:
|
|
|
|
case HA_KEYTYPE_LONGLONG:
|
|
|
|
case HA_KEYTYPE_ULONGLONG:
|
|
|
|
case HA_KEYTYPE_INT24:
|
|
|
|
case HA_KEYTYPE_UINT24:
|
|
|
|
case HA_KEYTYPE_INT8:
|
|
|
|
keyseg->flag|= HA_SWAP_KEY;
|
|
|
|
break;
|
|
|
|
case HA_KEYTYPE_VARTEXT1:
|
|
|
|
case HA_KEYTYPE_VARTEXT2:
|
|
|
|
case HA_KEYTYPE_VARBINARY1:
|
|
|
|
case HA_KEYTYPE_VARBINARY2:
|
|
|
|
if (!(keyseg->flag & HA_BLOB_PART))
|
|
|
|
{
|
|
|
|
/* Make a flag that this is a VARCHAR */
|
|
|
|
keyseg->flag|= HA_VAR_LENGTH_PART;
|
|
|
|
/* Store in bit_start number of bytes used to pack the length */
|
|
|
|
keyseg->bit_start= ((keyseg->type == HA_KEYTYPE_VARTEXT1 ||
|
|
|
|
keyseg->type == HA_KEYTYPE_VARBINARY1) ?
|
|
|
|
1 : 2);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (keyseg->flag & HA_SPACE_PACK)
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(!(keyseg->flag & HA_VAR_LENGTH_PART));
|
|
|
|
keydef->flag |= HA_SPACE_PACK_USED | HA_VAR_LENGTH_KEY;
|
|
|
|
options|=HA_OPTION_PACK_KEYS; /* Using packed keys */
|
|
|
|
length++; /* At least one length byte */
|
|
|
|
min_key_length_skip+=keyseg->length;
|
|
|
|
if (keyseg->length >= 255)
|
|
|
|
{ /* prefix may be 3 bytes */
|
|
|
|
min_key_length_skip+=2;
|
|
|
|
length+=2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (keyseg->flag & (HA_VAR_LENGTH_PART | HA_BLOB_PART))
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(!test_all_bits(keyseg->flag,
|
|
|
|
(HA_VAR_LENGTH_PART | HA_BLOB_PART)));
|
|
|
|
keydef->flag|=HA_VAR_LENGTH_KEY;
|
|
|
|
length++; /* At least one length byte */
|
|
|
|
options|=HA_OPTION_PACK_KEYS; /* Using packed keys */
|
|
|
|
min_key_length_skip+=keyseg->length;
|
|
|
|
if (keyseg->length >= 255)
|
|
|
|
{ /* prefix may be 3 bytes */
|
|
|
|
min_key_length_skip+=2;
|
|
|
|
length+=2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
key_length+= keyseg->length;
|
|
|
|
if (keyseg->null_bit)
|
|
|
|
{
|
|
|
|
key_length++;
|
|
|
|
options|=HA_OPTION_PACK_KEYS;
|
|
|
|
keyseg->flag|=HA_NULL_PART;
|
|
|
|
keydef->flag|=HA_VAR_LENGTH_KEY | HA_NULL_PART_KEY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} /* if HA_FULLTEXT */
|
|
|
|
key_segs+=keydef->keysegs;
|
|
|
|
if (keydef->keysegs > HA_MAX_KEY_SEG)
|
|
|
|
{
|
|
|
|
my_errno=HA_WRONG_CREATE_OPTION;
|
2007-04-05 13:38:05 +02:00
|
|
|
goto err_no_lock;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
key_segs may be 0 in the case when we only want to be able to
|
|
|
|
add on row into the table. This can happen with some DISTINCT queries
|
|
|
|
in MySQL
|
|
|
|
*/
|
|
|
|
if ((keydef->flag & (HA_NOSAME | HA_NULL_PART_KEY)) == HA_NOSAME &&
|
|
|
|
key_segs)
|
|
|
|
share.state.rec_per_key_part[key_segs-1]=1L;
|
|
|
|
length+=key_length;
|
2007-04-19 12:18:56 +02:00
|
|
|
/*
|
|
|
|
A key can't be longer than than half a index block (as we have
|
|
|
|
to be able to put at least 2 keys on an index block for the key
|
|
|
|
algorithms to work).
|
|
|
|
*/
|
|
|
|
if (length > maria_max_key_length())
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
my_errno=HA_WRONG_CREATE_OPTION;
|
2007-04-05 13:38:05 +02:00
|
|
|
goto err_no_lock;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
keydef->block_length= maria_block_size;
|
2006-04-11 15:45:10 +02:00
|
|
|
keydef->keylength= (uint16) key_length;
|
|
|
|
keydef->minlength= (uint16) (length-min_key_length_skip);
|
|
|
|
keydef->maxlength= (uint16) length;
|
|
|
|
|
|
|
|
if (length > max_key_length)
|
|
|
|
max_key_length= length;
|
2007-01-18 20:38:14 +01:00
|
|
|
tot_length+= ((max_rows/(ulong) (((uint) maria_block_size-5)/
|
|
|
|
(length*2))) *
|
|
|
|
maria_block_size);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unique_key_parts=0;
|
|
|
|
offset=reclength-uniques*MARIA_UNIQUE_HASH_LENGTH;
|
|
|
|
for (i=0, uniquedef=uniquedefs ; i < uniques ; i++ , uniquedef++)
|
|
|
|
{
|
|
|
|
uniquedef->key=keys+i;
|
|
|
|
unique_key_parts+=uniquedef->keysegs;
|
|
|
|
share.state.key_root[keys+i]= HA_OFFSET_ERROR;
|
|
|
|
tot_length+= (max_rows/(ulong) (((uint) maria_block_size-5)/
|
|
|
|
((MARIA_UNIQUE_HASH_LENGTH + pointer)*2)))*
|
|
|
|
(ulong) maria_block_size;
|
|
|
|
}
|
|
|
|
keys+=uniques; /* Each unique has 1 key */
|
|
|
|
key_segs+=uniques; /* Each unique has 1 key seg */
|
|
|
|
|
|
|
|
base_pos=(MARIA_STATE_INFO_SIZE + keys * MARIA_STATE_KEY_SIZE +
|
2007-01-18 20:38:14 +01:00
|
|
|
key_segs * MARIA_STATE_KEYSEG_SIZE);
|
|
|
|
info_length= base_pos+(uint) (MARIA_BASE_INFO_SIZE+
|
|
|
|
keys * MARIA_KEYDEF_SIZE+
|
|
|
|
uniques * MARIA_UNIQUEDEF_SIZE +
|
|
|
|
(key_segs + unique_key_parts)*HA_KEYSEG_SIZE+
|
|
|
|
columns*MARIA_COLUMNDEF_SIZE);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
DBUG_PRINT("info", ("info_length: %u", info_length));
|
|
|
|
/* There are only 16 bits for the total header length. */
|
|
|
|
if (info_length > 65535)
|
|
|
|
{
|
|
|
|
my_printf_error(0, "Maria table '%s' has too many columns and/or "
|
|
|
|
"indexes and/or unique constraints.",
|
|
|
|
MYF(0), name + dirname_length(name));
|
|
|
|
my_errno= HA_WRONG_CREATE_OPTION;
|
2007-04-05 13:38:05 +02:00
|
|
|
goto err_no_lock;
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
}
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
bmove(share.state.header.file_version,(byte*) maria_file_magic,4);
|
|
|
|
ci->old_options=options| (ci->old_options & HA_OPTION_TEMP_COMPRESS_RECORD ?
|
|
|
|
HA_OPTION_COMPRESS_RECORD |
|
|
|
|
HA_OPTION_TEMP_COMPRESS_RECORD: 0);
|
|
|
|
mi_int2store(share.state.header.options,ci->old_options);
|
|
|
|
mi_int2store(share.state.header.header_length,info_length);
|
|
|
|
mi_int2store(share.state.header.state_info_length,MARIA_STATE_INFO_SIZE);
|
|
|
|
mi_int2store(share.state.header.base_info_length,MARIA_BASE_INFO_SIZE);
|
|
|
|
mi_int2store(share.state.header.base_pos,base_pos);
|
2007-04-19 12:18:56 +02:00
|
|
|
share.state.header.data_file_type= datafile_type;
|
|
|
|
share.state.header.org_data_file_type= org_datafile_type;
|
2006-04-11 15:45:10 +02:00
|
|
|
share.state.header.language= (ci->language ?
|
|
|
|
ci->language : default_charset_info->number);
|
|
|
|
|
|
|
|
share.state.dellink = HA_OFFSET_ERROR;
|
2007-01-18 20:38:14 +01:00
|
|
|
share.state.first_bitmap_with_space= 0;
|
2006-04-11 15:45:10 +02:00
|
|
|
share.state.process= (ulong) getpid();
|
|
|
|
share.state.unique= (ulong) 0;
|
|
|
|
share.state.update_count=(ulong) 0;
|
|
|
|
share.state.version= (ulong) time((time_t*) 0);
|
|
|
|
share.state.sortkey= (ushort) ~0;
|
|
|
|
share.state.auto_increment=ci->auto_increment;
|
|
|
|
share.options=options;
|
|
|
|
share.base.rec_reflength=pointer;
|
2007-01-18 20:38:14 +01:00
|
|
|
share.base.block_size= maria_block_size;
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
/* Get estimate for index file length (this may be wrong for FT keys) */
|
2007-01-18 20:38:14 +01:00
|
|
|
tmp= (tot_length + maria_block_size * keys *
|
|
|
|
MARIA_INDEX_BLOCK_MARGIN) / maria_block_size;
|
2006-04-11 15:45:10 +02:00
|
|
|
/*
|
|
|
|
use maximum of key_file_length we calculated and key_file_length value we
|
|
|
|
got from MYI file header (see also mariapack.c:save_state)
|
|
|
|
*/
|
|
|
|
share.base.key_reflength=
|
|
|
|
maria_get_pointer_length(max(ci->key_file_length,tmp),3);
|
|
|
|
share.base.keys= share.state.header.keys= keys;
|
|
|
|
share.state.header.uniques= uniques;
|
|
|
|
share.state.header.fulltext_keys= fulltext_keys;
|
|
|
|
mi_int2store(share.state.header.key_parts,key_segs);
|
|
|
|
mi_int2store(share.state.header.unique_key_parts,unique_key_parts);
|
|
|
|
|
|
|
|
maria_set_all_keys_active(share.state.key_map, keys);
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
share.base.keystart = share.state.state.key_file_length=
|
2007-01-18 20:38:14 +01:00
|
|
|
MY_ALIGN(info_length, maria_block_size);
|
|
|
|
share.base.max_key_block_length= maria_block_size;
|
2006-04-11 15:45:10 +02:00
|
|
|
share.base.max_key_length=ALIGN_SIZE(max_key_length+4);
|
|
|
|
share.base.records=ci->max_rows;
|
|
|
|
share.base.reloc= ci->reloc_rows;
|
|
|
|
share.base.reclength=real_reclength;
|
|
|
|
share.base.pack_reclength=reclength+ test(options & HA_OPTION_CHECKSUM);
|
|
|
|
share.base.max_pack_length=pack_reclength;
|
|
|
|
share.base.min_pack_length=min_pack_length;
|
2007-01-18 20:38:14 +01:00
|
|
|
share.base.pack_bytes= pack_bytes;
|
|
|
|
share.base.fields= columns;
|
|
|
|
share.base.pack_fields= packed;
|
2006-04-11 15:45:10 +02:00
|
|
|
#ifdef USE_RAID
|
|
|
|
share.base.raid_type=ci->raid_type;
|
|
|
|
share.base.raid_chunks=ci->raid_chunks;
|
|
|
|
share.base.raid_chunksize=ci->raid_chunksize;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* max_data_file_length and max_key_file_length are recalculated on open */
|
|
|
|
if (options & HA_OPTION_TMP_TABLE)
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
{
|
|
|
|
tmp_table= TRUE;
|
|
|
|
sync_dir= 0;
|
2007-01-18 20:38:14 +01:00
|
|
|
share.base.max_data_file_length= (my_off_t) ci->data_file_length;
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-04-19 12:18:56 +02:00
|
|
|
if (datafile_type == BLOCK_RECORD)
|
2007-04-05 13:38:05 +02:00
|
|
|
share.base.min_block_length= share.base.min_row_length;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
share.base.min_block_length=
|
|
|
|
(share.base.pack_reclength+3 < MARIA_EXTEND_BLOCK_LENGTH &&
|
|
|
|
! share.base.blobs) ?
|
|
|
|
max(share.base.pack_reclength,MARIA_MIN_BLOCK_LENGTH) :
|
|
|
|
MARIA_EXTEND_BLOCK_LENGTH;
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
if (! (flags & HA_DONT_TOUCH_DATA))
|
|
|
|
share.state.create_time= (long) time((time_t*) 0);
|
|
|
|
|
|
|
|
pthread_mutex_lock(&THR_LOCK_maria);
|
|
|
|
|
|
|
|
if (ci->index_file_name)
|
|
|
|
{
|
|
|
|
char *iext= strrchr(ci->index_file_name, '.');
|
|
|
|
int have_iext= iext && !strcmp(iext, MARIA_NAME_IEXT);
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
if (tmp_table)
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
/* chop off the table name, tempory tables use generated name */
|
|
|
|
if ((path= strrchr(ci->index_file_name, FN_LIBCHAR)))
|
|
|
|
*path= '\0';
|
|
|
|
fn_format(filename, name, ci->index_file_name, MARIA_NAME_IEXT,
|
|
|
|
MY_REPLACE_DIR | MY_UNPACK_FILENAME | MY_APPEND_EXT);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fn_format(filename, ci->index_file_name, "", MARIA_NAME_IEXT,
|
|
|
|
MY_UNPACK_FILENAME | (have_iext ? MY_REPLACE_EXT :
|
|
|
|
MY_APPEND_EXT));
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
fn_format(linkname, name, "", MARIA_NAME_IEXT,
|
|
|
|
MY_UNPACK_FILENAME|MY_APPEND_EXT);
|
|
|
|
linkname_ptr=linkname;
|
|
|
|
/*
|
|
|
|
Don't create the table if the link or file exists to ensure that one
|
|
|
|
doesn't accidently destroy another table.
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
Don't sync dir now if the data file has the same path.
|
2006-04-11 15:45:10 +02:00
|
|
|
*/
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
create_flag=
|
|
|
|
(ci->data_file_name &&
|
|
|
|
!strcmp(ci->index_file_name, ci->data_file_name)) ? 0 : sync_dir;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fn_format(filename, name, "", MARIA_NAME_IEXT,
|
|
|
|
(MY_UNPACK_FILENAME |
|
|
|
|
(flags & HA_DONT_TOUCH_DATA) ? MY_RETURN_REAL_PATH : 0) |
|
|
|
|
MY_APPEND_EXT);
|
|
|
|
linkname_ptr=0;
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
/*
|
|
|
|
Replace the current file.
|
|
|
|
Don't sync dir now if the data file has the same path.
|
|
|
|
*/
|
|
|
|
create_flag= MY_DELETE_OLD | (!ci->data_file_name ? 0 : sync_dir);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
If a MRG_MARIA table is in use, the mapped MARIA tables are open,
|
|
|
|
but no entry is made in the table cache for them.
|
|
|
|
A TRUNCATE command checks for the table in the cache only and could
|
|
|
|
be fooled to believe, the table is not open.
|
|
|
|
Pull the emergency brake in this situation. (Bug #8306)
|
|
|
|
*/
|
|
|
|
if (_ma_test_if_reopen(filename))
|
|
|
|
{
|
|
|
|
my_printf_error(0, "MARIA table '%s' is in use "
|
|
|
|
"(most likely by a MERGE table). Try FLUSH TABLES.",
|
|
|
|
MYF(0), name + dirname_length(name));
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((file= my_create_with_symlink(linkname_ptr, filename, 0, create_mode,
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
MYF(MY_WME|create_flag))) < 0)
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err;
|
|
|
|
errpos=1;
|
|
|
|
|
|
|
|
if (!(flags & HA_DONT_TOUCH_DATA))
|
|
|
|
{
|
2007-01-18 20:38:14 +01:00
|
|
|
if (ci->data_file_name)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-01-18 20:38:14 +01:00
|
|
|
char *dext= strrchr(ci->data_file_name, '.');
|
|
|
|
int have_dext= dext && !strcmp(dext, MARIA_NAME_DEXT);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-01-23 20:13:26 +01:00
|
|
|
if (tmp_table)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
/* chop off the table name, tempory tables use generated name */
|
|
|
|
if ((path= strrchr(ci->data_file_name, FN_LIBCHAR)))
|
|
|
|
*path= '\0';
|
|
|
|
fn_format(filename, name, ci->data_file_name, MARIA_NAME_DEXT,
|
|
|
|
MY_REPLACE_DIR | MY_UNPACK_FILENAME | MY_APPEND_EXT);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-01-18 20:38:14 +01:00
|
|
|
fn_format(filename, ci->data_file_name, "", MARIA_NAME_DEXT,
|
|
|
|
MY_UNPACK_FILENAME |
|
|
|
|
(have_dext ? MY_REPLACE_EXT : MY_APPEND_EXT));
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
fn_format(linkname, name, "",MARIA_NAME_DEXT,
|
|
|
|
MY_UNPACK_FILENAME | MY_APPEND_EXT);
|
|
|
|
linkname_ptr=linkname;
|
|
|
|
create_flag=0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fn_format(filename,name,"", MARIA_NAME_DEXT,
|
|
|
|
MY_UNPACK_FILENAME | MY_APPEND_EXT);
|
|
|
|
linkname_ptr=0;
|
|
|
|
create_flag=MY_DELETE_OLD;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
if ((dfile=
|
|
|
|
my_create_with_symlink(linkname_ptr, filename, 0, create_mode,
|
2007-01-23 20:13:26 +01:00
|
|
|
MYF(MY_WME | create_flag | sync_dir))) < 0)
|
2007-01-18 20:38:14 +01:00
|
|
|
goto err;
|
2006-04-11 15:45:10 +02:00
|
|
|
errpos=3;
|
2007-01-18 20:38:14 +01:00
|
|
|
|
2007-04-12 11:05:30 +02:00
|
|
|
if (_ma_initialize_data_file(dfile, &share))
|
|
|
|
goto err;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
DBUG_PRINT("info", ("write state info and base info"));
|
2006-04-11 15:45:10 +02:00
|
|
|
if (_ma_state_info_write(file, &share.state, 2) ||
|
|
|
|
_ma_base_info_write(file, &share.base))
|
|
|
|
goto err;
|
2007-01-18 20:38:14 +01:00
|
|
|
DBUG_PRINT("info", ("base_pos: %d base_info_size: %d",
|
|
|
|
base_pos, MARIA_BASE_INFO_SIZE));
|
|
|
|
DBUG_ASSERT(my_tell(file,MYF(0)) == base_pos+ MARIA_BASE_INFO_SIZE);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
/* Write key and keyseg definitions */
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
DBUG_PRINT("info", ("write key and keyseg definitions"));
|
2006-04-11 15:45:10 +02:00
|
|
|
for (i=0 ; i < share.base.keys - uniques; i++)
|
|
|
|
{
|
|
|
|
uint sp_segs=(keydefs[i].flag & HA_SPATIAL) ? 2*SPDIMS : 0;
|
|
|
|
|
|
|
|
if (_ma_keydef_write(file, &keydefs[i]))
|
|
|
|
goto err;
|
|
|
|
for (j=0 ; j < keydefs[i].keysegs-sp_segs ; j++)
|
|
|
|
if (_ma_keyseg_write(file, &keydefs[i].seg[j]))
|
|
|
|
goto err;
|
|
|
|
#ifdef HAVE_SPATIAL
|
|
|
|
for (j=0 ; j < sp_segs ; j++)
|
|
|
|
{
|
|
|
|
HA_KEYSEG sseg;
|
|
|
|
sseg.type=SPTYPE;
|
|
|
|
sseg.language= 7; /* Binary */
|
|
|
|
sseg.null_bit=0;
|
|
|
|
sseg.bit_start=0;
|
|
|
|
sseg.bit_end=0;
|
|
|
|
sseg.bit_length= 0;
|
|
|
|
sseg.bit_pos= 0;
|
|
|
|
sseg.length=SPLEN;
|
|
|
|
sseg.null_pos=0;
|
|
|
|
sseg.start=j*SPLEN;
|
|
|
|
sseg.flag= HA_SWAP_KEY;
|
|
|
|
if (_ma_keyseg_write(file, &sseg))
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* Create extra keys for unique definitions */
|
|
|
|
offset=reclength-uniques*MARIA_UNIQUE_HASH_LENGTH;
|
|
|
|
bzero((char*) &tmp_keydef,sizeof(tmp_keydef));
|
|
|
|
bzero((char*) &tmp_keyseg,sizeof(tmp_keyseg));
|
|
|
|
for (i=0; i < uniques ; i++)
|
|
|
|
{
|
|
|
|
tmp_keydef.keysegs=1;
|
|
|
|
tmp_keydef.flag= HA_UNIQUE_CHECK;
|
2007-01-18 20:38:14 +01:00
|
|
|
tmp_keydef.block_length= (uint16) maria_block_size;
|
2006-04-11 15:45:10 +02:00
|
|
|
tmp_keydef.keylength= MARIA_UNIQUE_HASH_LENGTH + pointer;
|
|
|
|
tmp_keydef.minlength=tmp_keydef.maxlength=tmp_keydef.keylength;
|
|
|
|
tmp_keyseg.type= MARIA_UNIQUE_HASH_TYPE;
|
|
|
|
tmp_keyseg.length= MARIA_UNIQUE_HASH_LENGTH;
|
|
|
|
tmp_keyseg.start= offset;
|
|
|
|
offset+= MARIA_UNIQUE_HASH_LENGTH;
|
|
|
|
if (_ma_keydef_write(file,&tmp_keydef) ||
|
|
|
|
_ma_keyseg_write(file,(&tmp_keyseg)))
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save unique definition */
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
DBUG_PRINT("info", ("write unique definitions"));
|
2006-04-11 15:45:10 +02:00
|
|
|
for (i=0 ; i < share.state.header.uniques ; i++)
|
|
|
|
{
|
|
|
|
HA_KEYSEG *keyseg_end;
|
|
|
|
keyseg= uniquedefs[i].seg;
|
|
|
|
if (_ma_uniquedef_write(file, &uniquedefs[i]))
|
|
|
|
goto err;
|
|
|
|
for (keyseg= uniquedefs[i].seg, keyseg_end= keyseg+ uniquedefs[i].keysegs;
|
|
|
|
keyseg < keyseg_end;
|
|
|
|
keyseg++)
|
|
|
|
{
|
|
|
|
switch (keyseg->type) {
|
|
|
|
case HA_KEYTYPE_VARTEXT1:
|
|
|
|
case HA_KEYTYPE_VARTEXT2:
|
|
|
|
case HA_KEYTYPE_VARBINARY1:
|
|
|
|
case HA_KEYTYPE_VARBINARY2:
|
|
|
|
if (!(keyseg->flag & HA_BLOB_PART))
|
|
|
|
{
|
|
|
|
keyseg->flag|= HA_VAR_LENGTH_PART;
|
|
|
|
keyseg->bit_start= ((keyseg->type == HA_KEYTYPE_VARTEXT1 ||
|
|
|
|
keyseg->type == HA_KEYTYPE_VARBINARY1) ?
|
|
|
|
1 : 2);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2007-01-18 20:38:14 +01:00
|
|
|
DBUG_ASSERT((keyseg->flag & HA_VAR_LENGTH_PART) == 0);
|
2006-04-11 15:45:10 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (_ma_keyseg_write(file, keyseg))
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
Completion of merge of mysql-5.1 into mysql-maria.
Manually imported changes done to MyISAM (include/myisam.h,
storage/myisam/*, sql/ha_myisam.*, mysql-test/t/myisam.test,
mysql-test/t/ps_2myisam.test) the last
months into Maria (tedious, should do it more frequently in the
future), including those not done at the previous 5.1->Maria merge
(please in the future don't forget to apply MyISAM changes to Maria
when you merge 5.1 into Maria).
Note: I didn't try to import anything which could be MyISAM-related
in other tests of mysql-test (I didn't want to dig in all csets),
but as QA is working to make most tests re-usable for other engines
(Falcon), it is likely that we'll benefit from this and just have
to set engine=Maria somewhere to run those tests on Maria.
func_group and partition tests fail but they already do in main 5.1
on my machine. No Valgrind error in t/*maria*.test.
Monty: please see the commit comment of maria.result and check.
BitKeeper/deleted/.del-ha_maria.m4:
Delete: config/ac-macros/ha_maria.m4
configure.in:
fix for the new way of enabling engines
include/maria.h:
importing changes done to MyISAM the last months into Maria
include/my_handler.h:
importing changes done to MyISAM the last months into Maria
include/myisam.h:
importing changes done to MyISAM the last months into Maria
mysql-test/r/maria.result:
identical to myisam.result, except the engine name in some places
AND in the line testing key_block_size=1000000000000000000:
Maria gives a key block size of 8192 while MyISAM gives 4096;
is it explainable by the difference between MARIA_KEY_BLOCK_LENGTH
and the same constant in MyISAM? Monty?
mysql-test/r/ps_maria.result:
identical to ps_2myisam.result (except the engine name in some places)
mysql-test/t/maria.test:
instead of engine=maria everywhere, I use @@storage_engine (reduces
the diff with myisam.test).
importing changes done to MyISAM the last months into Maria
mysys/my_handler.c:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.cc:
importing changes done to MyISAM the last months into Maria
sql/ha_maria.h:
importing changes done to MyISAM the last months into Maria
sql/mysqld.cc:
unneeded
storage/maria/Makefile.am:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_check.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_create.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_delete_table.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_dynrec.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_extra.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_boolean_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_eval.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_nlq_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_parser.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ft_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_ftdefs.h:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_key.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_open.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_page.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rkey.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rsamepos.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_index.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_rt_mbr.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_search.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_sort.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test1.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test2.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_test3.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_update.c:
importing changes done to MyISAM the last months into Maria
storage/maria/ma_write.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_chk.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_def.h:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_ftdump.c:
importing changes done to MyISAM the last months into Maria
storage/maria/maria_pack.c:
importing changes done to MyISAM the last months into Maria
2006-08-10 16:36:54 +02:00
|
|
|
DBUG_PRINT("info", ("write field definitions"));
|
2007-04-19 12:18:56 +02:00
|
|
|
if (datafile_type == BLOCK_RECORD)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
/* Store columns in a more efficent order */
|
2007-04-05 13:38:05 +02:00
|
|
|
MARIA_COLUMNDEF **col_order, **pos;
|
|
|
|
if (!(col_order= (MARIA_COLUMNDEF**) my_malloc(share.base.fields *
|
2007-04-19 12:18:56 +02:00
|
|
|
sizeof(MARIA_COLUMNDEF*),
|
|
|
|
MYF(MY_WME))))
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err;
|
2007-04-19 12:18:56 +02:00
|
|
|
for (column= columndef, pos= col_order ;
|
|
|
|
column != end_column ;
|
|
|
|
column++, pos++)
|
|
|
|
*pos= column;
|
2007-04-05 13:38:05 +02:00
|
|
|
qsort(col_order, share.base.fields, sizeof(*col_order),
|
|
|
|
(qsort_cmp) compare_columns);
|
2007-01-18 20:38:14 +01:00
|
|
|
for (i=0 ; i < share.base.fields ; i++)
|
2007-04-05 13:38:05 +02:00
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
if (_ma_columndef_write(file, col_order[i]))
|
2007-04-05 13:38:05 +02:00
|
|
|
{
|
|
|
|
my_free((gptr) col_order, MYF(0));
|
2007-01-18 20:38:14 +01:00
|
|
|
goto err;
|
2007-04-05 13:38:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
my_free((gptr) col_order, MYF(0));
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i=0 ; i < share.base.fields ; i++)
|
2007-04-19 12:18:56 +02:00
|
|
|
if (_ma_columndef_write(file, &columndef[i]))
|
2007-01-18 20:38:14 +01:00
|
|
|
goto err;
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
#ifndef DBUG_OFF
|
|
|
|
if ((uint) my_tell(file,MYF(0)) != info_length)
|
|
|
|
{
|
|
|
|
uint pos= (uint) my_tell(file,MYF(0));
|
|
|
|
DBUG_PRINT("warning",("info_length: %d != used_length: %d",
|
|
|
|
info_length, pos));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enlarge files */
|
2007-01-18 20:38:14 +01:00
|
|
|
DBUG_PRINT("info", ("enlarge to keystart: %lu",
|
|
|
|
(ulong) share.base.keystart));
|
2006-04-11 15:45:10 +02:00
|
|
|
if (my_chsize(file,(ulong) share.base.keystart,0,MYF(0)))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (! (flags & HA_DONT_TOUCH_DATA))
|
|
|
|
{
|
|
|
|
#ifdef USE_RELOC
|
|
|
|
if (my_chsize(dfile,share.base.min_pack_length*ci->reloc_rows,0,MYF(0)))
|
|
|
|
goto err;
|
2007-01-23 20:13:26 +01:00
|
|
|
if (!tmp_table && my_sync(file, MYF(0)))
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
goto err;
|
2006-04-11 15:45:10 +02:00
|
|
|
#endif
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
/* if !USE_RELOC, there was no write to the file, no need to sync it */
|
2006-04-11 15:45:10 +02:00
|
|
|
errpos=2;
|
|
|
|
if (my_close(dfile,MYF(0)))
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
errpos=0;
|
|
|
|
pthread_mutex_unlock(&THR_LOCK_maria);
|
2007-04-05 13:38:05 +02:00
|
|
|
res= 0;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (my_close(file,MYF(0)))
|
2007-04-05 13:38:05 +02:00
|
|
|
res= my_errno;
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
/*
|
2007-03-01 18:23:58 +01:00
|
|
|
RECOVERY TODO
|
WL#3072 Maria Recovery. Making DDLs durable in Maria:
Sync table files after CREATE (of non-temp table), DROP, RENAME,
TRUNCATE, sync directories and symlinks (for the 3 first commands).
Comments for future log records.
In ma_rename(), if rename of index works and then rename of data fails,
try to undo the rename of the index to leave a consistent state.
mysys/my_symlink.c:
sync directory after creation of a symbolic link in it, if asked
mysys/my_sync.c:
comment. Fix for when the file's name has no directory in it.
storage/maria/ma_create.c:
sync files and links and dirs when creating a non-temporary table.
Optimizations of the above to reduce syncs in the common cases:
* if index file and data file have the exact same paths (regular
and link), sync the directories (of regular and link) only once
after creating the last file (the data file).
* don't sync the data file if we didn't write to it (always true
in our builds).
storage/maria/ma_delete_all.c:
sync files after truncating a table
storage/maria/ma_delete_table.c:
sync files and symbolic links and dirs after dropping a table
storage/maria/ma_extra.c:
a function which wraps the sync of the index file and the sync of the
data file.
storage/maria/ma_locking.c:
using a wrapper function
storage/maria/ma_rename.c:
sync files and symbolic links and dirs after renaming a table.
If rename of index works and then rename of data fails, try to undo
the rename of the index to leave a consistent state. That is just a
try, it may fail...
storage/maria/ma_test3.c:
warning to not pay attention to this test.
storage/maria/maria_def.h:
declaration for the function added to ma_extra.c
2006-11-27 22:01:29 +01:00
|
|
|
Write a log record describing the CREATE operation (just the file
|
|
|
|
names, link names, and the full header's content).
|
|
|
|
For this record to be of any use for Recovery, we need the upper
|
|
|
|
MySQL layer to be crash-safe, which it is not now (that would require work
|
|
|
|
using the ddl_log of sql/sql_table.cc); when is is, we should reconsider
|
|
|
|
the moment of writing this log record (before or after op, under
|
|
|
|
THR_LOCK_maria or not...), how to use it in Recovery, and force the log.
|
|
|
|
For now this record is just informative.
|
|
|
|
If operation failed earlier, we clean up in "err:" and the MySQL layer
|
|
|
|
will clean up the frm, so we needn't write anything to the log.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
my_free((char*) rec_per_key_part,MYF(0));
|
2007-04-05 13:38:05 +02:00
|
|
|
DBUG_RETURN(res);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
err:
|
|
|
|
pthread_mutex_unlock(&THR_LOCK_maria);
|
2007-04-05 13:38:05 +02:00
|
|
|
|
|
|
|
err_no_lock:
|
2006-04-11 15:45:10 +02:00
|
|
|
save_errno=my_errno;
|
|
|
|
switch (errpos) {
|
|
|
|
case 3:
|
|
|
|
VOID(my_close(dfile,MYF(0)));
|
|
|
|
/* fall through */
|
|
|
|
case 2:
|
|
|
|
if (! (flags & HA_DONT_TOUCH_DATA))
|
|
|
|
my_delete_with_symlink(fn_format(filename,name,"",MARIA_NAME_DEXT,
|
|
|
|
MY_UNPACK_FILENAME | MY_APPEND_EXT),
|
2007-01-23 20:13:26 +01:00
|
|
|
sync_dir);
|
2006-04-11 15:45:10 +02:00
|
|
|
/* fall through */
|
|
|
|
case 1:
|
|
|
|
VOID(my_close(file,MYF(0)));
|
|
|
|
if (! (flags & HA_DONT_TOUCH_DATA))
|
|
|
|
my_delete_with_symlink(fn_format(filename,name,"",MARIA_NAME_IEXT,
|
|
|
|
MY_UNPACK_FILENAME | MY_APPEND_EXT),
|
2007-01-23 20:13:26 +01:00
|
|
|
sync_dir);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
my_free((char*) rec_per_key_part, MYF(0));
|
|
|
|
DBUG_RETURN(my_errno=save_errno); /* return the fatal errno */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint maria_get_pointer_length(ulonglong file_length, uint def)
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(def >= 2 && def <= 7);
|
|
|
|
if (file_length) /* If not default */
|
|
|
|
{
|
|
|
|
#ifdef NOT_YET_READY_FOR_8_BYTE_POINTERS
|
2007-03-01 18:23:58 +01:00
|
|
|
if (file_length >= (ULL(1) << 56))
|
2006-04-11 15:45:10 +02:00
|
|
|
def=8;
|
2007-03-01 18:23:58 +01:00
|
|
|
else
|
2006-04-11 15:45:10 +02:00
|
|
|
#endif
|
2007-03-01 18:23:58 +01:00
|
|
|
if (file_length >= (ULL(1) << 48))
|
2006-04-11 15:45:10 +02:00
|
|
|
def=7;
|
2007-03-01 18:23:58 +01:00
|
|
|
else if (file_length >= (ULL(1) << 40))
|
2006-04-11 15:45:10 +02:00
|
|
|
def=6;
|
2007-03-01 18:23:58 +01:00
|
|
|
else if (file_length >= (ULL(1) << 32))
|
2006-04-11 15:45:10 +02:00
|
|
|
def=5;
|
2007-03-01 18:23:58 +01:00
|
|
|
else if (file_length >= (ULL(1) << 24))
|
2006-04-11 15:45:10 +02:00
|
|
|
def=4;
|
2007-03-01 18:23:58 +01:00
|
|
|
else if (file_length >= (ULL(1) << 16))
|
2006-04-11 15:45:10 +02:00
|
|
|
def=3;
|
|
|
|
else
|
|
|
|
def=2;
|
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Sort columns for records-in-block
|
|
|
|
|
|
|
|
IMPLEMENTATION
|
|
|
|
Sort columns in following order:
|
|
|
|
|
|
|
|
Fixed size, not null columns
|
|
|
|
Fixed length, null fields
|
|
|
|
Variable length fields (CHAR, VARCHAR)
|
|
|
|
Blobs
|
|
|
|
|
|
|
|
For same kind of fields, keep fields in original order
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline int sign(longlong a)
|
|
|
|
{
|
|
|
|
return a < 0 ? -1 : (a > 0 ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-12 11:05:30 +02:00
|
|
|
static int compare_columns(MARIA_COLUMNDEF **a_ptr, MARIA_COLUMNDEF **b_ptr)
|
2007-01-18 20:38:14 +01:00
|
|
|
{
|
|
|
|
MARIA_COLUMNDEF *a= *a_ptr, *b= *b_ptr;
|
|
|
|
enum en_fieldtype a_type, b_type;
|
|
|
|
|
2007-04-19 12:18:56 +02:00
|
|
|
a_type= ((a->type == FIELD_NORMAL || a->type == FIELD_CHECK) ?
|
2007-01-18 20:38:14 +01:00
|
|
|
FIELD_NORMAL : a->type);
|
2007-04-19 12:18:56 +02:00
|
|
|
b_type= ((b->type == FIELD_NORMAL || b->type == FIELD_CHECK) ?
|
2007-01-18 20:38:14 +01:00
|
|
|
FIELD_NORMAL : b->type);
|
|
|
|
|
|
|
|
if (a_type == FIELD_NORMAL && !a->null_bit)
|
|
|
|
{
|
|
|
|
if (b_type != FIELD_NORMAL || b->null_bit)
|
|
|
|
return -1;
|
|
|
|
return sign((long) (a->offset - b->offset));
|
|
|
|
}
|
|
|
|
if (b_type == FIELD_NORMAL && !b->null_bit)
|
|
|
|
return 1;
|
|
|
|
if (a_type == b_type)
|
|
|
|
return sign((long) (a->offset - b->offset));
|
|
|
|
if (a_type == FIELD_NORMAL)
|
|
|
|
return -1;
|
|
|
|
if (b_type == FIELD_NORMAL)
|
|
|
|
return 1;
|
|
|
|
if (a_type == FIELD_BLOB)
|
|
|
|
return 1;
|
|
|
|
if (b_type == FIELD_BLOB)
|
|
|
|
return -1;
|
|
|
|
return sign((long) (a->offset - b->offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-12 11:05:30 +02:00
|
|
|
/* Initialize data file */
|
2007-01-18 20:38:14 +01:00
|
|
|
|
2007-04-12 11:05:30 +02:00
|
|
|
int _ma_initialize_data_file(File dfile, MARIA_SHARE *share)
|
|
|
|
{
|
|
|
|
if (share->data_file_type == BLOCK_RECORD)
|
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
if (my_chsize(dfile, maria_block_size, 0, MYF(MY_WME)))
|
2007-04-12 11:05:30 +02:00
|
|
|
return 1;
|
|
|
|
share->state.state.data_file_length= maria_block_size;
|
|
|
|
_ma_bitmap_delete_all(share);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|