Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
73fe3812
Commit
73fe3812
authored
Nov 23, 2003
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/my/mysql-4.1
parents
baa6ee20
05f1e100
Changes
25
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
335 additions
and
255 deletions
+335
-255
VC++Files/libmysqltest/mytest.c
VC++Files/libmysqltest/mytest.c
+26
-22
include/myisam.h
include/myisam.h
+1
-0
include/mysql_com.h
include/mysql_com.h
+1
-1
innobase/btr/btr0btr.c
innobase/btr/btr0btr.c
+20
-14
innobase/btr/btr0cur.c
innobase/btr/btr0cur.c
+14
-13
innobase/include/btr0btr.ic
innobase/include/btr0btr.ic
+1
-1
innobase/include/buf0buf.ic
innobase/include/buf0buf.ic
+4
-4
innobase/include/row0sel.ic
innobase/include/row0sel.ic
+1
-1
innobase/include/row0upd.ic
innobase/include/row0upd.ic
+2
-2
innobase/include/trx0rseg.ic
innobase/include/trx0rseg.ic
+2
-2
innobase/pars/pars0opt.c
innobase/pars/pars0opt.c
+3
-2
innobase/que/que0que.c
innobase/que/que0que.c
+8
-5
myisam/ft_boolean_search.c
myisam/ft_boolean_search.c
+32
-19
myisam/mi_check.c
myisam/mi_check.c
+56
-35
myisam/myisamchk.c
myisam/myisamchk.c
+12
-3
mysql-test/r/create.result
mysql-test/r/create.result
+1
-4
mysql-test/r/fulltext.result
mysql-test/r/fulltext.result
+17
-0
mysql-test/r/fulltext_left_join.result
mysql-test/r/fulltext_left_join.result
+8
-0
mysql-test/t/create.test
mysql-test/t/create.test
+2
-4
mysql-test/t/fulltext.test
mysql-test/t/fulltext.test
+11
-0
mysql-test/t/fulltext_left_join.test
mysql-test/t/fulltext_left_join.test
+2
-0
sql/ha_innodb.cc
sql/ha_innodb.cc
+4
-3
sql/item_func.cc
sql/item_func.cc
+1
-0
sql/mysqld.cc
sql/mysqld.cc
+105
-119
strings/bmove512.c
strings/bmove512.c
+1
-1
No files found.
VC++Files/libmysqltest/mytest.c
View file @
73fe3812
...
@@ -40,7 +40,7 @@ main( int argc, char * argv[] )
...
@@ -40,7 +40,7 @@ main( int argc, char * argv[] )
MYSQL_ROW
row
;
MYSQL_ROW
row
;
//....just curious....
//....just curious....
printf
(
"sizeof( MYSQL ) == %d
\n
"
,
sizeof
(
MYSQL
)
)
;
printf
(
"sizeof( MYSQL ) == %d
\n
"
,
(
int
)
sizeof
(
MYSQL
)
)
;
if
(
argc
==
2
)
if
(
argc
==
2
)
{
{
strcpy
(
szDB
,
argv
[
1
]
)
;
strcpy
(
szDB
,
argv
[
1
]
)
;
...
@@ -49,27 +49,31 @@ main( int argc, char * argv[] )
...
@@ -49,27 +49,31 @@ main( int argc, char * argv[] )
{
{
strcpy
(
szDB
,
"mysql"
)
;
strcpy
(
szDB
,
"mysql"
)
;
printf
(
"Some mysql struct information (size and offset):
\n
"
);
printf
(
"Some mysql struct information (size and offset):
\n
"
);
printf
(
"net:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
net
),
offsetof
(
MYSQL
,
net
));
printf
(
"net:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
net
),
printf
(
"host:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
host
),
offsetof
(
MYSQL
,
host
));
(
int
)
offsetof
(
MYSQL
,
net
));
printf
(
"port:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
port
),
offsetof
(
MYSQL
,
port
));
printf
(
"host:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
host
),
printf
(
"protocol_version:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
protocol_version
),
(
int
)
offsetof
(
MYSQL
,
host
));
offsetof
(
MYSQL
,
protocol_version
));
printf
(
"port:
\t
%3d %3d
\n
"
,
(
int
)
sizeof
(
myData
->
port
),
printf
(
"thread_id:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
thread_id
),
(
int
)
offsetof
(
MYSQL
,
port
));
offsetof
(
MYSQL
,
thread_id
));
printf
(
"protocol_version:
\t
%3d %3d
\n
"
,
printf
(
"affected_rows:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
affected_rows
),
(
int
)
sizeof
(
myData
->
protocol_version
),
offsetof
(
MYSQL
,
affected_rows
));
(
int
)
offsetof
(
MYSQL
,
protocol_version
));
printf
(
"packet_length:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
packet_length
),
printf
(
"thread_id:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
thread_id
),
offsetof
(
MYSQL
,
packet_length
));
(
int
)
offsetof
(
MYSQL
,
thread_id
));
printf
(
"status:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
status
),
printf
(
"affected_rows:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
affected_rows
),
offsetof
(
MYSQL
,
status
));
(
int
)
offsetof
(
MYSQL
,
affected_rows
));
printf
(
"fields:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
fields
),
printf
(
"packet_length:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
packet_length
),
offsetof
(
MYSQL
,
fields
));
(
int
)
offsetof
(
MYSQL
,
packet_length
));
printf
(
"field_alloc:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
field_alloc
),
printf
(
"status:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
status
),
offsetof
(
MYSQL
,
field_alloc
));
(
int
)
offsetof
(
MYSQL
,
status
));
printf
(
"free_me:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
free_me
),
printf
(
"fields:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
fields
),
offsetof
(
MYSQL
,
free_me
));
(
int
)
offsetof
(
MYSQL
,
fields
));
printf
(
"options:
\t
%3d %3d
\n
"
,
sizeof
(
myData
->
options
),
printf
(
"field_alloc:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
field_alloc
),
offsetof
(
MYSQL
,
options
));
(
int
)
offsetof
(
MYSQL
,
field_alloc
));
printf
(
"free_me:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
free_me
),
(
int
)
offsetof
(
MYSQL
,
free_me
));
printf
(
"options:
\t
%3d %3d
\n
"
,(
int
)
sizeof
(
myData
->
options
),
(
int
)
offsetof
(
MYSQL
,
options
));
puts
(
""
);
puts
(
""
);
}
}
}
}
...
...
include/myisam.h
View file @
73fe3812
...
@@ -318,6 +318,7 @@ typedef struct st_mi_check_param
...
@@ -318,6 +318,7 @@ typedef struct st_mi_check_param
ulonglong
auto_increment_value
;
ulonglong
auto_increment_value
;
ulonglong
max_data_file_length
;
ulonglong
max_data_file_length
;
ulonglong
keys_in_use
;
ulonglong
keys_in_use
;
ulonglong
max_record_length
;
my_off_t
search_after_block
;
my_off_t
search_after_block
;
my_off_t
new_file_pos
,
key_file_blocks
;
my_off_t
new_file_pos
,
key_file_blocks
;
my_off_t
keydata
,
totaldata
,
key_blocks
,
start_check_pos
;
my_off_t
keydata
,
totaldata
,
key_blocks
,
start_check_pos
;
...
...
include/mysql_com.h
View file @
73fe3812
...
@@ -118,7 +118,7 @@ enum enum_server_command
...
@@ -118,7 +118,7 @@ enum enum_server_command
#define CLIENT_SECURE_CONNECTION 32768
/* New 4.1 authentication */
#define CLIENT_SECURE_CONNECTION 32768
/* New 4.1 authentication */
#define CLIENT_MULTI_STATEMENTS 65536
/* Enable/disable multi-stmt support */
#define CLIENT_MULTI_STATEMENTS 65536
/* Enable/disable multi-stmt support */
#define CLIENT_MULTI_RESULTS 131072
/* Enable/disable multi-results */
#define CLIENT_MULTI_RESULTS 131072
/* Enable/disable multi-results */
#define CLIENT_REMEMBER_OPTIONS (
1L << 31
)
#define CLIENT_REMEMBER_OPTIONS (
(ulong) (1L << 31)
)
#define SERVER_STATUS_IN_TRANS 1
/* Transaction has started */
#define SERVER_STATUS_IN_TRANS 1
/* Transaction has started */
#define SERVER_STATUS_AUTOCOMMIT 2
/* Server in auto_commit mode */
#define SERVER_STATUS_AUTOCOMMIT 2
/* Server in auto_commit mode */
...
...
innobase/btr/btr0btr.c
View file @
73fe3812
...
@@ -600,8 +600,8 @@ btr_page_get_father_for_rec(
...
@@ -600,8 +600,8 @@ btr_page_get_father_for_rec(
"InnoDB: father ptr page no %lu, child page no %lu
\n
"
,
"InnoDB: father ptr page no %lu, child page no %lu
\n
"
,
(
UT_LIST_GET_FIRST
(
tree
->
tree_indexes
))
->
table_name
,
(
UT_LIST_GET_FIRST
(
tree
->
tree_indexes
))
->
table_name
,
(
UT_LIST_GET_FIRST
(
tree
->
tree_indexes
))
->
name
,
(
UT_LIST_GET_FIRST
(
tree
->
tree_indexes
))
->
name
,
btr_node_ptr_get_child_page_no
(
node_ptr
),
(
unsigned
long
)
btr_node_ptr_get_child_page_no
(
node_ptr
),
buf_frame_get_page_no
(
page
));
(
unsigned
long
)
buf_frame_get_page_no
(
page
));
page_rec_print
(
page_rec_get_next
(
page_get_infimum_rec
(
page
)));
page_rec_print
(
page_rec_get_next
(
page_get_infimum_rec
(
page
)));
page_rec_print
(
node_ptr
);
page_rec_print
(
node_ptr
);
...
@@ -877,7 +877,9 @@ btr_page_reorganize_low(
...
@@ -877,7 +877,9 @@ btr_page_reorganize_low(
"InnoDB: Error: page old data size %lu new data size %lu
\n
"
"InnoDB: Error: page old data size %lu new data size %lu
\n
"
"InnoDB: Error: page old max ins size %lu new max ins size %lu
\n
"
"InnoDB: Error: page old max ins size %lu new max ins size %lu
\n
"
"InnoDB: Make a detailed bug report and send it to mysql@lists.mysql.com
\n
"
,
"InnoDB: Make a detailed bug report and send it to mysql@lists.mysql.com
\n
"
,
data_size1
,
data_size2
,
max_ins_size1
,
max_ins_size2
);
(
unsigned
long
)
data_size1
,
(
unsigned
long
)
data_size2
,
(
unsigned
long
)
max_ins_size1
,
(
unsigned
long
)
max_ins_size2
);
}
}
buf_frame_free
(
new_page
);
buf_frame_free
(
new_page
);
...
@@ -2356,8 +2358,10 @@ btr_index_rec_validate(
...
@@ -2356,8 +2358,10 @@ btr_index_rec_validate(
"InnoDB: Record in index %s in table %s, page %lu, at offset %lu
\n
"
"InnoDB: Record in index %s in table %s, page %lu, at offset %lu
\n
"
"InnoDB: has %lu fields, should have %lu
\n
"
,
"InnoDB: has %lu fields, should have %lu
\n
"
,
index
->
name
,
index
->
table_name
,
index
->
name
,
index
->
table_name
,
buf_frame_get_page_no
(
page
),
(
ulint
)(
rec
-
page
),
(
unsigned
long
)
buf_frame_get_page_no
(
page
),
rec_get_n_fields
(
rec
),
n
);
(
unsigned
long
)
(
rec
-
page
),
(
unsigned
long
)
rec_get_n_fields
(
rec
),
(
unsigned
long
)
n
);
if
(
!
dump_on_error
)
{
if
(
!
dump_on_error
)
{
...
@@ -2390,9 +2394,11 @@ btr_index_rec_validate(
...
@@ -2390,9 +2394,11 @@ btr_index_rec_validate(
"InnoDB: Record in index %s in table %s, page %lu, at offset %lu
\n
"
"InnoDB: Record in index %s in table %s, page %lu, at offset %lu
\n
"
"InnoDB: field %lu len is %lu, should be %lu
\n
"
,
"InnoDB: field %lu len is %lu, should be %lu
\n
"
,
index
->
name
,
index
->
table_name
,
index
->
name
,
index
->
table_name
,
buf_frame_get_page_no
(
page
),
(
unsigned
long
)
buf_frame_get_page_no
(
page
),
(
ulint
)(
rec
-
page
),
(
unsigned
long
)
(
rec
-
page
),
i
,
len
,
dtype_get_fixed_size
(
type
));
(
unsigned
long
)
i
,
(
unsigned
long
)
len
,
(
unsigned
long
)
dtype_get_fixed_size
(
type
));
if
(
!
dump_on_error
)
{
if
(
!
dump_on_error
)
{
...
@@ -2541,7 +2547,7 @@ btr_validate_level(
...
@@ -2541,7 +2547,7 @@ btr_validate_level(
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Error on pages %lu and %lu in index %s table %s
\n
"
,
"InnoDB: Error on pages %lu and %lu in index %s table %s
\n
"
,
buf_frame_get_page_no
(
page
),
buf_frame_get_page_no
(
page
),
right_page_no
,
(
unsigned
long
)
right_page_no
,
index
->
name
,
index
->
table_name
);
index
->
name
,
index
->
table_name
);
fprintf
(
stderr
,
fprintf
(
stderr
,
...
@@ -2581,7 +2587,7 @@ btr_validate_level(
...
@@ -2581,7 +2587,7 @@ btr_validate_level(
&
mtr
))
{
&
mtr
))
{
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
buf_frame_get_page_no
(
page
),
(
unsigned
long
)
buf_frame_get_page_no
(
page
),
index
->
name
,
index
->
table_name
);
index
->
name
,
index
->
table_name
);
fprintf
(
stderr
,
fprintf
(
stderr
,
...
@@ -2596,7 +2602,7 @@ btr_validate_level(
...
@@ -2596,7 +2602,7 @@ btr_validate_level(
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: node ptr child page n:o %lu
\n
"
,
"InnoDB: node ptr child page n:o %lu
\n
"
,
btr_node_ptr_get_child_page_no
(
node_ptr
));
(
unsigned
long
)
btr_node_ptr_get_child_page_no
(
node_ptr
));
rec_sprintf
(
err_buf
,
900
,
rec_sprintf
(
err_buf
,
900
,
btr_page_get_father_for_rec
(
tree
,
page
,
btr_page_get_father_for_rec
(
tree
,
page
,
...
@@ -2679,7 +2685,7 @@ btr_validate_level(
...
@@ -2679,7 +2685,7 @@ btr_validate_level(
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
buf_frame_get_page_no
(
page
),
(
unsigned
long
)
buf_frame_get_page_no
(
page
),
index
->
name
,
index
->
table_name
);
index
->
name
,
index
->
table_name
);
buf_page_print
(
father_page
);
buf_page_print
(
father_page
);
...
@@ -2699,7 +2705,7 @@ btr_validate_level(
...
@@ -2699,7 +2705,7 @@ btr_validate_level(
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
buf_frame_get_page_no
(
page
),
(
unsigned
long
)
buf_frame_get_page_no
(
page
),
index
->
name
,
index
->
table_name
);
index
->
name
,
index
->
table_name
);
buf_page_print
(
father_page
);
buf_page_print
(
father_page
);
...
@@ -2717,7 +2723,7 @@ btr_validate_level(
...
@@ -2717,7 +2723,7 @@ btr_validate_level(
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
"InnoDB: Error on page %lu in index %s table %s
\n
"
,
buf_frame_get_page_no
(
page
),
(
unsigned
long
)
buf_frame_get_page_no
(
page
),
index
->
name
,
index
->
table_name
);
index
->
name
,
index
->
table_name
);
buf_page_print
(
father_page
);
buf_page_print
(
father_page
);
...
...
innobase/btr/btr0cur.c
View file @
73fe3812
...
@@ -874,8 +874,8 @@ btr_cur_optimistic_insert(
...
@@ -874,8 +874,8 @@ btr_cur_optimistic_insert(
if
(
btr_cur_print_record_ops
&&
thr
)
{
if
(
btr_cur_print_record_ops
&&
thr
)
{
printf
(
printf
(
"Trx with id %lu %lu going to insert to table %s index %s
\n
"
,
"Trx with id %lu %lu going to insert to table %s index %s
\n
"
,
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
index
->
table_name
,
index
->
name
);
index
->
table_name
,
index
->
name
);
dtuple_print
(
entry
);
dtuple_print
(
entry
);
}
}
...
@@ -978,7 +978,8 @@ btr_cur_optimistic_insert(
...
@@ -978,7 +978,8 @@ btr_cur_optimistic_insert(
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Error: cannot insert tuple %s to index %s of table %s
\n
"
"InnoDB: Error: cannot insert tuple %s to index %s of table %s
\n
"
"InnoDB: max insert size %lu
\n
"
,
"InnoDB: max insert size %lu
\n
"
,
err_buf
,
index
->
name
,
index
->
table
->
name
,
max_size
);
err_buf
,
index
->
name
,
index
->
table
->
name
,
(
unsigned
long
)
max_size
);
mem_free
(
err_buf
);
mem_free
(
err_buf
);
}
}
...
@@ -1343,8 +1344,8 @@ btr_cur_update_sec_rec_in_place(
...
@@ -1343,8 +1344,8 @@ btr_cur_update_sec_rec_in_place(
if
(
btr_cur_print_record_ops
&&
thr
)
{
if
(
btr_cur_print_record_ops
&&
thr
)
{
printf
(
printf
(
"Trx with id %lu %lu going to update table %s index %s
\n
"
,
"Trx with id %lu %lu going to update table %s index %s
\n
"
,
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
index
->
table_name
,
index
->
name
);
index
->
table_name
,
index
->
name
);
rec_print
(
rec
);
rec_print
(
rec
);
}
}
...
@@ -1407,8 +1408,8 @@ btr_cur_update_in_place(
...
@@ -1407,8 +1408,8 @@ btr_cur_update_in_place(
if
(
btr_cur_print_record_ops
&&
thr
)
{
if
(
btr_cur_print_record_ops
&&
thr
)
{
printf
(
printf
(
"Trx with id %lu %lu going to update table %s index %s
\n
"
,
"Trx with id %lu %lu going to update table %s index %s
\n
"
,
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
index
->
table_name
,
index
->
name
);
index
->
table_name
,
index
->
name
);
rec_print
(
rec
);
rec_print
(
rec
);
}
}
...
@@ -1509,8 +1510,8 @@ btr_cur_optimistic_update(
...
@@ -1509,8 +1510,8 @@ btr_cur_optimistic_update(
if
(
btr_cur_print_record_ops
&&
thr
)
{
if
(
btr_cur_print_record_ops
&&
thr
)
{
printf
(
printf
(
"Trx with id %lu %lu going to update table %s index %s
\n
"
,
"Trx with id %lu %lu going to update table %s index %s
\n
"
,
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
index
->
table_name
,
index
->
name
);
index
->
table_name
,
index
->
name
);
rec_print
(
rec
);
rec_print
(
rec
);
}
}
...
@@ -2059,8 +2060,8 @@ btr_cur_del_mark_set_clust_rec(
...
@@ -2059,8 +2060,8 @@ btr_cur_del_mark_set_clust_rec(
if
(
btr_cur_print_record_ops
&&
thr
)
{
if
(
btr_cur_print_record_ops
&&
thr
)
{
printf
(
printf
(
"Trx with id %lu %lu going to del mark table %s index %s
\n
"
,
"Trx with id %lu %lu going to del mark table %s index %s
\n
"
,
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
index
->
table_name
,
index
->
name
);
index
->
table_name
,
index
->
name
);
rec_print
(
rec
);
rec_print
(
rec
);
}
}
...
@@ -2199,8 +2200,8 @@ btr_cur_del_mark_set_sec_rec(
...
@@ -2199,8 +2200,8 @@ btr_cur_del_mark_set_sec_rec(
if
(
btr_cur_print_record_ops
&&
thr
)
{
if
(
btr_cur_print_record_ops
&&
thr
)
{
printf
(
printf
(
"Trx with id %lu %lu going to del mark table %s index %s
\n
"
,
"Trx with id %lu %lu going to del mark table %s index %s
\n
"
,
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_high
(
thr_get_trx
(
thr
)
->
id
),
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
(
unsigned
long
)
ut_dulint_get_low
(
thr_get_trx
(
thr
)
->
id
),
cursor
->
index
->
table_name
,
cursor
->
index
->
name
);
cursor
->
index
->
table_name
,
cursor
->
index
->
name
);
rec_print
(
rec
);
rec_print
(
rec
);
}
}
...
...
innobase/include/btr0btr.ic
View file @
73fe3812
...
@@ -203,7 +203,7 @@ btr_node_ptr_get_child_page_no(
...
@@ -203,7 +203,7 @@ btr_node_ptr_get_child_page_no(
if (page_no == 0) {
if (page_no == 0) {
fprintf(stderr,
fprintf(stderr,
"InnoDB: a nonsensical page number 0 in a node ptr record at offset %lu\n",
"InnoDB: a nonsensical page number 0 in a node ptr record at offset %lu\n",
(u
lint
)(rec - buf_frame_align(rec)));
(u
nsigned long
)(rec - buf_frame_align(rec)));
buf_page_print(buf_frame_align(rec));
buf_page_print(buf_frame_align(rec));
}
}
...
...
innobase/include/buf0buf.ic
View file @
73fe3812
...
@@ -219,8 +219,8 @@ buf_block_align(
...
@@ -219,8 +219,8 @@ buf_block_align(
"InnoDB: corruption. If this happens in an InnoDB database recovery,\n"
"InnoDB: corruption. If this happens in an InnoDB database recovery,\n"
"InnoDB: you can look from section 6.1 at http://www.innodb.com/ibman.html\n"
"InnoDB: you can look from section 6.1 at http://www.innodb.com/ibman.html\n"
"InnoDB: how to force recovery.\n",
"InnoDB: how to force recovery.\n",
(
ulint)ptr, (ulint
)frame_zero,
(
long)ptr, (long
)frame_zero,
(
ulint
)(buf_pool->high_end));
(
long
)(buf_pool->high_end));
ut_a(0);
ut_a(0);
}
}
...
@@ -255,8 +255,8 @@ buf_frame_align(
...
@@ -255,8 +255,8 @@ buf_frame_align(
"InnoDB: corruption. If this happens in an InnoDB database recovery,\n"
"InnoDB: corruption. If this happens in an InnoDB database recovery,\n"
"InnoDB: you can look from section 6.1 at http://www.innodb.com/ibman.html\n"
"InnoDB: you can look from section 6.1 at http://www.innodb.com/ibman.html\n"
"InnoDB: how to force recovery.\n",
"InnoDB: how to force recovery.\n",
(
ulint)ptr, (ulint
)(buf_pool->frame_zero),
(
long)ptr, (long
)(buf_pool->frame_zero),
(
ulint
)(buf_pool->high_end));
(
long
)(buf_pool->high_end));
ut_a(0);
ut_a(0);
}
}
...
...
innobase/include/row0sel.ic
View file @
73fe3812
...
@@ -77,7 +77,7 @@ open_step(
...
@@ -77,7 +77,7 @@ open_step(
if (err != DB_SUCCESS) {
if (err != DB_SUCCESS) {
/* SQL error detected */
/* SQL error detected */
printf("SQL error %lu\n", err);
printf("SQL error %lu\n",
(unsigned long)
err);
ut_error;
ut_error;
que_thr_handle_error(thr, err, NULL, 0);
que_thr_handle_error(thr, err, NULL, 0);
...
...
innobase/include/row0upd.ic
View file @
73fe3812
...
@@ -86,8 +86,8 @@ upd_field_set_field_no(
...
@@ -86,8 +86,8 @@ upd_field_set_field_no(
fprintf(stderr,
fprintf(stderr,
"InnoDB: Error: trying to access field %lu in table %s\n"
"InnoDB: Error: trying to access field %lu in table %s\n"
"InnoDB: index %s, but index has only %lu fields\n",
"InnoDB: index %s, but index has only %lu fields\n",
field_no, index->table_name, index->name,
(unsigned long)
field_no, index->table_name, index->name,
dict_index_get_n_fields(index));
(unsigned long)
dict_index_get_n_fields(index));
}
}
dtype_copy(dfield_get_type(&(upd_field->new_val)),
dtype_copy(dfield_get_type(&(upd_field->new_val)),
...
...
innobase/include/trx0rseg.ic
View file @
73fe3812
...
@@ -63,7 +63,7 @@ trx_rsegf_get_nth_undo(
...
@@ -63,7 +63,7 @@ trx_rsegf_get_nth_undo(
{
{
if (n >= TRX_RSEG_N_SLOTS) {
if (n >= TRX_RSEG_N_SLOTS) {
fprintf(stderr,
fprintf(stderr,
"InnoDB: Error: trying to get slot %lu of rseg\n", n);
"InnoDB: Error: trying to get slot %lu of rseg\n",
(unsigned long)
n);
ut_a(0);
ut_a(0);
}
}
...
@@ -84,7 +84,7 @@ trx_rsegf_set_nth_undo(
...
@@ -84,7 +84,7 @@ trx_rsegf_set_nth_undo(
{
{
if (n >= TRX_RSEG_N_SLOTS) {
if (n >= TRX_RSEG_N_SLOTS) {
fprintf(stderr,
fprintf(stderr,
"InnoDB: Error: trying to set slot %lu of rseg\n", n);
"InnoDB: Error: trying to set slot %lu of rseg\n",
(unsigned long)
n);
ut_a(0);
ut_a(0);
}
}
...
...
innobase/pars/pars0opt.c
View file @
73fe3812
...
@@ -1235,7 +1235,8 @@ opt_print_query_plan(
...
@@ -1235,7 +1235,8 @@ opt_print_query_plan(
printf
(
printf
(
"Table %s index %s; exact m. %lu, match %lu, end conds %lu
\n
"
,
"Table %s index %s; exact m. %lu, match %lu, end conds %lu
\n
"
,
plan
->
table
->
name
,
plan
->
index
->
name
,
plan
->
table
->
name
,
plan
->
index
->
name
,
plan
->
n_exact_match
,
n_fields
,
(
unsigned
long
)
plan
->
n_exact_match
,
UT_LIST_GET_LEN
(
plan
->
end_conds
));
(
unsigned
long
)
n_fields
,
(
unsigned
long
)
UT_LIST_GET_LEN
(
plan
->
end_conds
));
}
}
}
}
innobase/que/que0que.c
View file @
73fe3812
...
@@ -513,7 +513,7 @@ que_graph_free_recursive(
...
@@ -513,7 +513,7 @@ que_graph_free_recursive(
if
(
thr
->
magic_n
!=
QUE_THR_MAGIC_N
)
{
if
(
thr
->
magic_n
!=
QUE_THR_MAGIC_N
)
{
fprintf
(
stderr
,
fprintf
(
stderr
,
"que_thr struct appears corrupt; magic n %lu
\n
"
,
"que_thr struct appears corrupt; magic n %lu
\n
"
,
thr
->
magic_n
);
(
unsigned
long
)
thr
->
magic_n
);
mem_analyze_corruption
((
byte
*
)
thr
);
mem_analyze_corruption
((
byte
*
)
thr
);
ut_a
(
0
);
ut_a
(
0
);
}
}
...
@@ -625,7 +625,7 @@ que_graph_free_recursive(
...
@@ -625,7 +625,7 @@ que_graph_free_recursive(
default:
default:
fprintf
(
stderr
,
fprintf
(
stderr
,
"que_node struct appears corrupt; type %lu
\n
"
,
"que_node struct appears corrupt; type %lu
\n
"
,
que_node_get_type
(
node
));
(
unsigned
long
)
que_node_get_type
(
node
));
mem_analyze_corruption
((
byte
*
)
node
);
mem_analyze_corruption
((
byte
*
)
node
);
ut_a
(
0
);
ut_a
(
0
);
}
}
...
@@ -1105,7 +1105,8 @@ que_thr_move_to_run_state_for_mysql(
...
@@ -1105,7 +1105,8 @@ que_thr_move_to_run_state_for_mysql(
{
{
if
(
thr
->
magic_n
!=
QUE_THR_MAGIC_N
)
{
if
(
thr
->
magic_n
!=
QUE_THR_MAGIC_N
)
{
fprintf
(
stderr
,
fprintf
(
stderr
,
"que_thr struct appears corrupt; magic n %lu
\n
"
,
thr
->
magic_n
);
"que_thr struct appears corrupt; magic n %lu
\n
"
,
(
unsigned
long
)
thr
->
magic_n
);
mem_analyze_corruption
((
byte
*
)
thr
);
mem_analyze_corruption
((
byte
*
)
thr
);
...
@@ -1141,7 +1142,8 @@ que_thr_stop_for_mysql_no_error(
...
@@ -1141,7 +1142,8 @@ que_thr_stop_for_mysql_no_error(
if
(
thr
->
magic_n
!=
QUE_THR_MAGIC_N
)
{
if
(
thr
->
magic_n
!=
QUE_THR_MAGIC_N
)
{
fprintf
(
stderr
,
fprintf
(
stderr
,
"que_thr struct appears corrupt; magic n %lu
\n
"
,
thr
->
magic_n
);
"que_thr struct appears corrupt; magic n %lu
\n
"
,
(
unsigned
long
)
thr
->
magic_n
);
mem_analyze_corruption
((
byte
*
)
thr
);
mem_analyze_corruption
((
byte
*
)
thr
);
...
@@ -1216,7 +1218,8 @@ que_node_print_info(
...
@@ -1216,7 +1218,8 @@ que_node_print_info(
str
=
(
char
*
)
"UNKNOWN NODE TYPE"
;
str
=
(
char
*
)
"UNKNOWN NODE TYPE"
;
}
}
printf
(
"Node type %lu: %s, address %lx
\n
"
,
type
,
str
,
addr
);
printf
(
"Node type %lu: %s, address %lx
\n
"
,
(
unsigned
long
)
type
,
str
,
(
unsigned
long
)
addr
);
}
}
/**************************************************************************
/**************************************************************************
...
...
myisam/ft_boolean_search.c
View file @
73fe3812
...
@@ -61,10 +61,11 @@ typedef struct st_ftb_expr FTB_EXPR;
...
@@ -61,10 +61,11 @@ typedef struct st_ftb_expr FTB_EXPR;
struct
st_ftb_expr
struct
st_ftb_expr
{
{
FTB_EXPR
*
up
;
FTB_EXPR
*
up
;
byte
*
quot
,
*
qend
;
my_off_t
docid
[
2
]
;
my_off_t
docid
[
2
];
/* for index search and for sca
n */
/* ^^^^^^^^^^^^^^^^^^ FTB_{EXPR,WORD} common sectio
n */
float
weight
;
float
weight
;
float
cur_weight
;
float
cur_weight
;
byte
*
quot
,
*
qend
;
uint
flags
;
uint
flags
;
uint
yesses
;
/* number of "yes" words matched */
uint
yesses
;
/* number of "yes" words matched */
uint
nos
;
/* number of "no" words matched */
uint
nos
;
/* number of "no" words matched */
...
@@ -77,6 +78,7 @@ typedef struct st_ftb_word
...
@@ -77,6 +78,7 @@ typedef struct st_ftb_word
FTB_EXPR
*
up
;
FTB_EXPR
*
up
;
MI_KEYDEF
*
keyinfo
;
MI_KEYDEF
*
keyinfo
;
my_off_t
docid
[
2
];
/* for index search and for scan */
my_off_t
docid
[
2
];
/* for index search and for scan */
/* ^^^^^^^^^^^^^^^^^^ FTB_{EXPR,WORD} common section */
my_off_t
key_root
;
my_off_t
key_root
;
float
weight
;
float
weight
;
uint
ndepth
;
uint
ndepth
;
...
@@ -299,13 +301,15 @@ static void _ftb_init_index_search(FT_INFO *ftb)
...
@@ -299,13 +301,15 @@ static void _ftb_init_index_search(FT_INFO *ftb)
if
(
ftbw
->
flags
&
FTB_FLAG_TRUNC
)
if
(
ftbw
->
flags
&
FTB_FLAG_TRUNC
)
{
{
/*
/*
special treatment for truncation operator
:((
special treatment for truncation operator
1.
+trunc* and there're other (not +trunc*)
words
1.
there are some (besides this) +
words
| no need to search in the index, it can never ADD new rows
| no need to search in the index, it can never ADD new rows
| to the result, and to remove half-matched rows we do scan anyway
| to the result, and to remove half-matched rows we do scan anyway
2. -trunc*
2. -trunc*
| same as 1.
| same as 1.
3. trunc*
3. in 1 and 2, +/- need not be on the same expr. level,
but can be on any upper level, as in +word +(trunc1* trunc2*)
4. otherwise
| We have to index-search for this prefix.
| We have to index-search for this prefix.
| It may cause duplicates, as in the index (sorted by <word,docid>)
| It may cause duplicates, as in the index (sorted by <word,docid>)
| <aaaa,row1>
| <aaaa,row1>
...
@@ -313,22 +317,31 @@ static void _ftb_init_index_search(FT_INFO *ftb)
...
@@ -313,22 +317,31 @@ static void _ftb_init_index_search(FT_INFO *ftb)
| <aacc,row1>
| <aacc,row1>
| Searching for "aa*" will find row1 twice...
| Searching for "aa*" will find row1 twice...
*/
*/
if
(
test
(
ftbw
->
flags
&
FTB_FLAG_NO
)
||
/* 2 */
FTB_EXPR
*
ftbe
;
(
test
(
ftbw
->
flags
&
FTB_FLAG_YES
)
&&
/* 1 */
for
(
ftbe
=
(
FTB_EXPR
*
)
ftbw
;
ftbw
->
up
->
ythresh
-
ftbw
->
up
->
yweaks
>
1
))
/* 1 */
ftbe
->
up
&&
!
(
ftbe
->
up
->
flags
&
FTB_FLAG_TRUNC
);
{
ftbe
->
up
->
flags
|=
FTB_FLAG_TRUNC
,
ftbe
=
ftbe
->
up
)
ftbw
->
docid
[
0
]
=
HA_POS_ERROR
;
ftbw
->
up
->
yweaks
++
;
continue
;
}
else
/* 3 */
{
{
if
(
!
is_tree_inited
(
&
ftb
->
no_dupes
))
if
(
ftbe
->
flags
&
FTB_FLAG_NO
||
/* 2 */
init_tree
(
&
ftb
->
no_dupes
,
0
,
0
,
sizeof
(
my_off_t
),
ftbe
->
up
->
ythresh
-
ftbe
->
up
->
yweaks
>
1
)
/* 1 */
_ftb_no_dupes_cmp
,
0
,
NULL
,
NULL
);
{
else
FTB_EXPR
*
top_ftbe
=
ftbe
->
up
->
up
;
reset_tree
(
&
ftb
->
no_dupes
);
ftbw
->
docid
[
0
]
=
HA_POS_ERROR
;
for
(
ftbe
=
ftbw
->
up
;
ftbe
!=
top_ftbe
;
ftbe
=
ftbe
->
up
)
if
(
ftbe
->
flags
&
FTB_FLAG_YES
)
ftbe
->
yweaks
++
;
ftbe
=
0
;
break
;
}
}
}
if
(
!
ftbe
)
continue
;
/* 3 */
if
(
!
is_tree_inited
(
&
ftb
->
no_dupes
))
init_tree
(
&
ftb
->
no_dupes
,
0
,
0
,
sizeof
(
my_off_t
),
_ftb_no_dupes_cmp
,
0
,
0
,
0
);
else
reset_tree
(
&
ftb
->
no_dupes
);
}
}
if
(
_ft2_search
(
ftb
,
ftbw
,
1
))
if
(
_ft2_search
(
ftb
,
ftbw
,
1
))
...
...
myisam/mi_check.c
View file @
73fe3812
...
@@ -77,6 +77,7 @@ void myisamchk_init(MI_CHECK *param)
...
@@ -77,6 +77,7 @@ void myisamchk_init(MI_CHECK *param)
param
->
tmpfile_createflag
=
O_RDWR
|
O_TRUNC
|
O_EXCL
;
param
->
tmpfile_createflag
=
O_RDWR
|
O_TRUNC
|
O_EXCL
;
param
->
myf_rw
=
MYF
(
MY_NABP
|
MY_WME
|
MY_WAIT_IF_FULL
);
param
->
myf_rw
=
MYF
(
MY_NABP
|
MY_WME
|
MY_WAIT_IF_FULL
);
param
->
start_check_pos
=
0
;
param
->
start_check_pos
=
0
;
param
->
max_record_length
=
LONGLONG_MAX
;
param
->
key_cache_block_size
=
KEY_CACHE_BLOCK_SIZE
;
param
->
key_cache_block_size
=
KEY_CACHE_BLOCK_SIZE
;
}
}
...
@@ -523,7 +524,7 @@ static int chk_index(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo,
...
@@ -523,7 +524,7 @@ static int chk_index(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo,
if
(
!
(
temp_buff
=
(
uchar
*
)
my_alloca
((
uint
)
keyinfo
->
block_length
)))
if
(
!
(
temp_buff
=
(
uchar
*
)
my_alloca
((
uint
)
keyinfo
->
block_length
)))
{
{
mi_check_print_error
(
param
,
"Not
Enough memory
"
);
mi_check_print_error
(
param
,
"Not
enough memory for keyblock
"
);
DBUG_RETURN
(
-
1
);
DBUG_RETURN
(
-
1
);
}
}
...
@@ -712,7 +713,7 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
...
@@ -712,7 +713,7 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
if
(
!
(
record
=
(
byte
*
)
my_malloc
(
info
->
s
->
base
.
pack_reclength
,
MYF
(
0
))))
if
(
!
(
record
=
(
byte
*
)
my_malloc
(
info
->
s
->
base
.
pack_reclength
,
MYF
(
0
))))
{
{
mi_check_print_error
(
param
,
"Not
Enough memory
"
);
mi_check_print_error
(
param
,
"Not
enough memory for record
"
);
DBUG_RETURN
(
-
1
);
DBUG_RETURN
(
-
1
);
}
}
records
=
del_blocks
=
0
;
records
=
del_blocks
=
0
;
...
@@ -815,16 +816,17 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
...
@@ -815,16 +816,17 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
goto
next
;
goto
next
;
}
}
mi_check_print_error
(
param
,
"Wrong bytesec: %d-%d-%d at linkstart: %s"
,
mi_check_print_error
(
param
,
"Wrong bytesec: %d-%d-%d at linkstart: %s"
,
block_info
.
header
[
0
],
block_info
.
header
[
1
],
block_info
.
header
[
0
],
block_info
.
header
[
1
],
block_info
.
header
[
2
],
block_info
.
header
[
2
],
llstr
(
start_block
,
llbuff
));
llstr
(
start_block
,
llbuff
));
goto
err2
;
goto
err2
;
}
}
if
(
info
->
state
->
data_file_length
<
block_info
.
filepos
+
if
(
info
->
state
->
data_file_length
<
block_info
.
filepos
+
block_info
.
block_len
)
block_info
.
block_len
)
{
{
mi_check_print_error
(
param
,
"Recordlink that points outside datafile at %s"
,
mi_check_print_error
(
param
,
llstr
(
pos
,
llbuff
));
"Recordlink that points outside datafile at %s"
,
llstr
(
pos
,
llbuff
));
got_error
=
1
;
got_error
=
1
;
break
;
break
;
}
}
...
@@ -835,9 +837,9 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
...
@@ -835,9 +837,9 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
pos
=
block_info
.
filepos
+
block_info
.
block_len
;
pos
=
block_info
.
filepos
+
block_info
.
block_len
;
if
(
block_info
.
rec_len
>
(
uint
)
info
->
s
->
base
.
max_pack_length
)
if
(
block_info
.
rec_len
>
(
uint
)
info
->
s
->
base
.
max_pack_length
)
{
{
mi_check_print_error
(
param
,
"Found too long record (%
d
) at %s"
,
mi_check_print_error
(
param
,
"Found too long record (%
lu
) at %s"
,
block_info
.
rec_len
,
(
ulong
)
block_info
.
rec_len
,
llstr
(
start_recpos
,
llbuff
));
llstr
(
start_recpos
,
llbuff
));
got_error
=
1
;
got_error
=
1
;
break
;
break
;
}
}
...
@@ -846,8 +848,10 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
...
@@ -846,8 +848,10 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
if
(
!
(
to
=
mi_alloc_rec_buff
(
info
,
block_info
.
rec_len
,
if
(
!
(
to
=
mi_alloc_rec_buff
(
info
,
block_info
.
rec_len
,
&
info
->
rec_buff
)))
&
info
->
rec_buff
)))
{
{
mi_check_print_error
(
param
,
"Not enough memory for blob at %s"
,
mi_check_print_error
(
param
,
llstr
(
start_recpos
,
llbuff
));
"Not enough memory (%lu) for blob at %s"
,
(
ulong
)
block_info
.
rec_len
,
llstr
(
start_recpos
,
llbuff
));
got_error
=
1
;
got_error
=
1
;
break
;
break
;
}
}
...
@@ -858,9 +862,11 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
...
@@ -858,9 +862,11 @@ int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend)
}
}
if
(
left_length
<
block_info
.
data_len
)
if
(
left_length
<
block_info
.
data_len
)
{
{
mi_check_print_error
(
param
,
"Found too long record at %s"
,
mi_check_print_error
(
param
,
"Found too long record (%lu) at %s"
,
llstr
(
start_recpos
,
llbuff
));
(
ulong
)
block_info
.
data_len
,
got_error
=
1
;
break
;
llstr
(
start_recpos
,
llbuff
));
got_error
=
1
;
break
;
}
}
if
(
_mi_read_cache
(
&
param
->
read_cache
,(
byte
*
)
to
,
block_info
.
filepos
,
if
(
_mi_read_cache
(
&
param
->
read_cache
,(
byte
*
)
to
,
block_info
.
filepos
,
(
uint
)
block_info
.
data_len
,
(
uint
)
block_info
.
data_len
,
...
@@ -1167,7 +1173,7 @@ int mi_repair(MI_CHECK *param, register MI_INFO *info,
...
@@ -1167,7 +1173,7 @@ int mi_repair(MI_CHECK *param, register MI_INFO *info,
MYF
(
0
)))
||
MYF
(
0
)))
||
!
mi_alloc_rec_buff
(
info
,
-
1
,
&
sort_param
.
rec_buff
))
!
mi_alloc_rec_buff
(
info
,
-
1
,
&
sort_param
.
rec_buff
))
{
{
mi_check_print_error
(
param
,
"Not enough memory for extra record"
);
mi_check_print_error
(
param
,
"Not enough memory for extra record"
);
goto
err
;
goto
err
;
}
}
...
@@ -1630,7 +1636,7 @@ static int sort_one_index(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo,
...
@@ -1630,7 +1636,7 @@ static int sort_one_index(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo,
if
(
!
(
buff
=
(
uchar
*
)
my_alloca
((
uint
)
keyinfo
->
block_length
)))
if
(
!
(
buff
=
(
uchar
*
)
my_alloca
((
uint
)
keyinfo
->
block_length
)))
{
{
mi_check_print_error
(
param
,
"Not
Enough memory
"
);
mi_check_print_error
(
param
,
"Not
enough memory for key block
"
);
DBUG_RETURN
(
-
1
);
DBUG_RETURN
(
-
1
);
}
}
if
(
!
_mi_fetch_keypage
(
info
,
keyinfo
,
pagepos
,
DFLT_INIT_HITS
,
buff
,
0
))
if
(
!
_mi_fetch_keypage
(
info
,
keyinfo
,
pagepos
,
DFLT_INIT_HITS
,
buff
,
0
))
...
@@ -1842,7 +1848,7 @@ int mi_repair_by_sort(MI_CHECK *param, register MI_INFO *info,
...
@@ -1842,7 +1848,7 @@ int mi_repair_by_sort(MI_CHECK *param, register MI_INFO *info,
MYF
(
0
)))
||
MYF
(
0
)))
||
!
mi_alloc_rec_buff
(
info
,
-
1
,
&
sort_param
.
rec_buff
))
!
mi_alloc_rec_buff
(
info
,
-
1
,
&
sort_param
.
rec_buff
))
{
{
mi_check_print_error
(
param
,
"Not enough memory for extra record"
);
mi_check_print_error
(
param
,
"Not enough memory for extra record"
);
goto
err
;
goto
err
;
}
}
if
(
!
rep_quick
)
if
(
!
rep_quick
)
...
@@ -2278,17 +2284,19 @@ int mi_repair_parallel(MI_CHECK *param, register MI_INFO *info,
...
@@ -2278,17 +2284,19 @@ int mi_repair_parallel(MI_CHECK *param, register MI_INFO *info,
rec_length
=
share
->
base
.
min_block_length
;
rec_length
=
share
->
base
.
min_block_length
;
else
else
rec_length
=
share
->
base
.
pack_reclength
;
rec_length
=
share
->
base
.
pack_reclength
;
/*
+1 below is required hack for parallel repair mode.
The info->state->records value, that is compared later
to sort_info.max_records and cannot exceed it, is
increased in sort_key_write. In mi_repair_by_sort, sort_key_write
is called after sort_key_read, where the comparison is performed,
but in parallel mode master thread can call sort_key_write
before some other repair thread calls sort_key_read.
Furthermore I'm not even sure +1 would be enough.
May be sort_info.max_records shold be always set to max value in
parallel mode.
*/
sort_info
.
max_records
=
sort_info
.
max_records
=
/* +1 below is required hack for parallel repair mode.
The info->state->records value, that is compared later
to sort_info.max_records and cannot exceed it, is
increased in sort_key_write. In mi_repair_by_sort, sort_key_write
is called after sort_key_read, where the comparison is performed,
but in parallel mode master thread can call sort_key_write
before some other repair thread calls sort_key_read.
Furthermore I'm not even sure +1 would be enough.
May be sort_info.max_records shold be always set to max value in
parallel mode. */
((
param
->
testflag
&
T_CREATE_MISSING_KEYS
)
?
info
->
state
->
records
+
1
:
((
param
->
testflag
&
T_CREATE_MISSING_KEYS
)
?
info
->
state
->
records
+
1
:
(
ha_rows
)
(
sort_info
.
filelength
/
rec_length
+
1
));
(
ha_rows
)
(
sort_info
.
filelength
/
rec_length
+
1
));
...
@@ -2302,7 +2310,7 @@ int mi_repair_parallel(MI_CHECK *param, register MI_INFO *info,
...
@@ -2302,7 +2310,7 @@ int mi_repair_parallel(MI_CHECK *param, register MI_INFO *info,
(
sizeof
(
MI_SORT_PARAM
)
+
share
->
base
.
pack_reclength
),
(
sizeof
(
MI_SORT_PARAM
)
+
share
->
base
.
pack_reclength
),
MYF
(
MY_ZEROFILL
))))
MYF
(
MY_ZEROFILL
))))
{
{
mi_check_print_error
(
param
,
"Not enough memory!"
);
mi_check_print_error
(
param
,
"Not enough memory
for key
!"
);
goto
err
;
goto
err
;
}
}
total_key_length
=
0
;
total_key_length
=
0
;
...
@@ -2858,9 +2866,20 @@ static int sort_get_next_record(MI_SORT_PARAM *sort_param)
...
@@ -2858,9 +2866,20 @@ static int sort_get_next_record(MI_SORT_PARAM *sort_param)
if
(
!
(
to
=
mi_alloc_rec_buff
(
info
,
block_info
.
rec_len
,
if
(
!
(
to
=
mi_alloc_rec_buff
(
info
,
block_info
.
rec_len
,
&
(
sort_param
->
rec_buff
))))
&
(
sort_param
->
rec_buff
))))
{
{
mi_check_print_error
(
param
,
"Not enough memory for blob at %s (need %lu)"
,
if
(
param
->
max_record_length
>=
block_info
.
rec_len
)
llstr
(
sort_param
->
start_recpos
,
llbuff
),
block_info
.
rec_len
);
{
DBUG_RETURN
(
1
);
mi_check_print_error
(
param
,
"Not enough memory for blob at %s (need %lu)"
,
llstr
(
sort_param
->
start_recpos
,
llbuff
),
(
ulong
)
block_info
.
rec_len
);
DBUG_RETURN
(
1
);
}
else
{
mi_check_print_info
(
param
,
"Not enough memory for blob at %s (need %lu); Row skipped"
,
llstr
(
sort_param
->
start_recpos
,
llbuff
),
(
ulong
)
block_info
.
rec_len
);
goto
try_next
;
}
}
}
}
}
else
else
...
@@ -2868,14 +2887,16 @@ static int sort_get_next_record(MI_SORT_PARAM *sort_param)
...
@@ -2868,14 +2887,16 @@ static int sort_get_next_record(MI_SORT_PARAM *sort_param)
}
}
if
(
left_length
<
block_info
.
data_len
||
!
block_info
.
data_len
)
if
(
left_length
<
block_info
.
data_len
||
!
block_info
.
data_len
)
{
{
mi_check_print_info
(
param
,
"Found block with too small length at %s; Skipped"
,
mi_check_print_info
(
param
,
"Found block with too small length at %s; Skipped"
,
llstr
(
sort_param
->
start_recpos
,
llbuff
));
llstr
(
sort_param
->
start_recpos
,
llbuff
));
goto
try_next
;
goto
try_next
;
}
}
if
(
block_info
.
filepos
+
block_info
.
data_len
>
if
(
block_info
.
filepos
+
block_info
.
data_len
>
sort_param
->
read_cache
.
end_of_file
)
sort_param
->
read_cache
.
end_of_file
)
{
{
mi_check_print_info
(
param
,
"Found block that points outside data file at %s"
,
mi_check_print_info
(
param
,
"Found block that points outside data file at %s"
,
llstr
(
sort_param
->
start_recpos
,
llbuff
));
llstr
(
sort_param
->
start_recpos
,
llbuff
));
goto
try_next
;
goto
try_next
;
}
}
...
@@ -3510,7 +3531,7 @@ static SORT_KEY_BLOCKS *alloc_key_blocks(MI_CHECK *param, uint blocks,
...
@@ -3510,7 +3531,7 @@ static SORT_KEY_BLOCKS *alloc_key_blocks(MI_CHECK *param, uint blocks,
buffer_length
+
IO_SIZE
)
*
blocks
,
buffer_length
+
IO_SIZE
)
*
blocks
,
MYF
(
0
))))
MYF
(
0
))))
{
{
mi_check_print_error
(
param
,
"Not
E
nough memory for sort-key-blocks"
);
mi_check_print_error
(
param
,
"Not
e
nough memory for sort-key-blocks"
);
return
(
0
);
return
(
0
);
}
}
for
(
i
=
0
;
i
<
blocks
;
i
++
)
for
(
i
=
0
;
i
<
blocks
;
i
++
)
...
...
myisam/myisamchk.c
View file @
73fe3812
...
@@ -110,7 +110,8 @@ int main(int argc, char **argv)
...
@@ -110,7 +110,8 @@ int main(int argc, char **argv)
VOID
(
fflush
(
stderr
));
VOID
(
fflush
(
stderr
));
if
((
check_param
.
error_printed
|
check_param
.
warning_printed
)
&&
if
((
check_param
.
error_printed
|
check_param
.
warning_printed
)
&&
(
check_param
.
testflag
&
T_FORCE_CREATE
)
&&
(
check_param
.
testflag
&
T_FORCE_CREATE
)
&&
(
!
(
check_param
.
testflag
&
(
T_REP
|
T_SORT_RECORDS
|
T_SORT_INDEX
))))
(
!
(
check_param
.
testflag
&
(
T_REP
|
T_REP_BY_SORT
|
T_SORT_RECORDS
|
T_SORT_INDEX
))))
{
{
uint
old_testflag
=
check_param
.
testflag
;
uint
old_testflag
=
check_param
.
testflag
;
if
(
!
(
check_param
.
testflag
&
T_REP
))
if
(
!
(
check_param
.
testflag
&
T_REP
))
...
@@ -153,7 +154,7 @@ enum options_mc {
...
@@ -153,7 +154,7 @@ enum options_mc {
OPT_KEY_CACHE_BLOCK_SIZE
,
OPT_MYISAM_BLOCK_SIZE
,
OPT_KEY_CACHE_BLOCK_SIZE
,
OPT_MYISAM_BLOCK_SIZE
,
OPT_READ_BUFFER_SIZE
,
OPT_WRITE_BUFFER_SIZE
,
OPT_SORT_BUFFER_SIZE
,
OPT_READ_BUFFER_SIZE
,
OPT_WRITE_BUFFER_SIZE
,
OPT_SORT_BUFFER_SIZE
,
OPT_SORT_KEY_BLOCKS
,
OPT_DECODE_BITS
,
OPT_FT_MIN_WORD_LEN
,
OPT_SORT_KEY_BLOCKS
,
OPT_DECODE_BITS
,
OPT_FT_MIN_WORD_LEN
,
OPT_FT_MAX_WORD_LEN
,
OPT_FT_MAX_WORD_LEN_FOR_SORT
OPT_FT_MAX_WORD_LEN
,
OPT_FT_MAX_WORD_LEN_FOR_SORT
,
OPT_MAX_RECORD_LENGTH
};
};
static
struct
my_option
my_long_options
[]
=
static
struct
my_option
my_long_options
[]
=
...
@@ -215,6 +216,11 @@ static struct my_option my_long_options[] =
...
@@ -215,6 +216,11 @@ static struct my_option my_long_options[] =
(
gptr
*
)
&
check_param
.
keys_in_use
,
(
gptr
*
)
&
check_param
.
keys_in_use
,
(
gptr
*
)
&
check_param
.
keys_in_use
,
(
gptr
*
)
&
check_param
.
keys_in_use
,
0
,
GET_ULL
,
REQUIRED_ARG
,
-
1
,
0
,
0
,
0
,
0
,
0
},
0
,
GET_ULL
,
REQUIRED_ARG
,
-
1
,
0
,
0
,
0
,
0
,
0
},
{
"max-record-length"
,
OPT_MAX_RECORD_LENGTH
,
"Skip rows bigger than this if myisamchk can't allocate memory to hold it"
,
(
gptr
*
)
&
check_param
.
max_record_length
,
(
gptr
*
)
&
check_param
.
max_record_length
,
0
,
GET_ULL
,
REQUIRED_ARG
,
LONGLONG_MAX
,
0
,
LONGLONG_MAX
,
0
,
0
,
0
},
{
"medium-check"
,
'm'
,
{
"medium-check"
,
'm'
,
"Faster than extend-check, but only finds 99.99% of all errors. Should be good enough for most cases."
,
"Faster than extend-check, but only finds 99.99% of all errors. Should be good enough for most cases."
,
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
0
,
0
,
0
,
GET_NO_ARG
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
...
@@ -327,7 +333,7 @@ static struct my_option my_long_options[] =
...
@@ -327,7 +333,7 @@ static struct my_option my_long_options[] =
static
void
print_version
(
void
)
static
void
print_version
(
void
)
{
{
printf
(
"%s Ver 2.
6
for %s at %s
\n
"
,
my_progname
,
SYSTEM_TYPE
,
printf
(
"%s Ver 2.
7
for %s at %s
\n
"
,
my_progname
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
MACHINE_TYPE
);
}
}
...
@@ -394,6 +400,9 @@ static void usage(void)
...
@@ -394,6 +400,9 @@ static void usage(void)
-k, --keys-used=# Tell MyISAM to update only some specific keys. # is a
\n
\
-k, --keys-used=# Tell MyISAM to update only some specific keys. # is a
\n
\
bit mask of which keys to use. This can be used to
\n
\
bit mask of which keys to use. This can be used to
\n
\
get faster inserts.
\n
\
get faster inserts.
\n
\
--max-record-length=#
\n
\
Skip rows bigger than this if myisamchk can't allocate
\n
\
memory to hold it.
\n
\
-r, --recover Can fix almost anything except unique keys that aren't
\n
\
-r, --recover Can fix almost anything except unique keys that aren't
\n
\
unique.
\n
\
unique.
\n
\
-n, --sort-recover Forces recovering with sorting even if the temporary
\n
\
-n, --sort-recover Forces recovering with sorting even if the temporary
\n
\
...
...
mysql-test/r/create.result
View file @
73fe3812
drop table if exists t1,t2,t3;
drop table if exists t1,t2,t3;
drop database if exists test_$1;
create table t1 (b char(0));
create table t1 (b char(0));
insert into t1 values (""),(null);
insert into t1 values (""),(null);
select * from t1;
select * from t1;
...
@@ -302,9 +303,6 @@ t3 CREATE TABLE `t3` (
...
@@ -302,9 +303,6 @@ t3 CREATE TABLE `t3` (
select * from t3;
select * from t3;
id name
id name
drop table t2, t3;
drop table t2, t3;
drop database if exists test_$1;
Warnings:
Note 1008 Can't drop database 'test_$1'; database doesn't exist
create database test_$1;
create database test_$1;
create table test_$1.t3 like t1;
create table test_$1.t3 like t1;
create temporary table t3 like test_$1.t3;
create temporary table t3 like test_$1.t3;
...
@@ -411,7 +409,6 @@ a b c d e f g h dd
...
@@ -411,7 +409,6 @@ a b c d e f g h dd
1 -7 7 2000-01-01 b 2000-01-01 00:00:00 05:04:03 yet another binary data 02:00:00
1 -7 7 2000-01-01 b 2000-01-01 00:00:00 05:04:03 yet another binary data 02:00:00
2 -2 2 1825-12-14 a 2003-01-01 03:02:01 04:03:02 binary data 02:00:00
2 -2 2 1825-12-14 a 2003-01-01 03:02:01 04:03:02 binary data 02:00:00
drop table t1, t2;
drop table t1, t2;
drop database if exists test_$1;
create database test_$1;
create database test_$1;
use test_$1;
use test_$1;
select database();
select database();
...
...
mysql-test/r/fulltext.result
View file @
73fe3812
...
@@ -161,6 +161,23 @@ Only MyISAM tables support collections
...
@@ -161,6 +161,23 @@ Only MyISAM tables support collections
Function MATCH ... AGAINST() is used to do a search
Function MATCH ... AGAINST() is used to do a search
some test foobar implements vector space model
some test foobar implements vector space model
drop table t1;
drop table t1;
create table t1 (a varchar(200) not null, fulltext (a));
insert t1 values ("aaa10 bbb20"), ("aaa20 bbb15"), ("aaa30 bbb10");
select * from t1 where match a against ("+aaa* +bbb*" in boolean mode);
a
aaa10 bbb20
aaa20 bbb15
aaa30 bbb10
select * from t1 where match a against ("+aaa* +bbb1*" in boolean mode);
a
aaa20 bbb15
aaa30 bbb10
select * from t1 where match a against ("+aaa* +ccc*" in boolean mode);
a
select * from t1 where match a against ("+aaa10 +(bbb*)" in boolean mode);
a
aaa10 bbb20
drop table t1;
CREATE TABLE t1 (
CREATE TABLE t1 (
id int(11),
id int(11),
ticket int(11),
ticket int(11),
...
...
mysql-test/r/fulltext_left_join.result
View file @
73fe3812
...
@@ -41,4 +41,12 @@ venue_id venue_text dt name entity_id
...
@@ -41,4 +41,12 @@ venue_id venue_text dt name entity_id
select * from t1 left join t2 on venue_id = entity_id where match(name) against('aberdeen') and dt = '2003-05-23 19:30:00';
select * from t1 left join t2 on venue_id = entity_id where match(name) against('aberdeen') and dt = '2003-05-23 19:30:00';
venue_id venue_text dt name entity_id
venue_id venue_text dt name entity_id
1 a1 2003-05-23 19:30:00 aberdeen town hall 1
1 a1 2003-05-23 19:30:00 aberdeen town hall 1
select * from t1 left join t2 on (venue_id = entity_id and match(name) against('aberdeen' in boolean mode)) where dt = '2003-05-23 19:30:00';
venue_id venue_text dt name entity_id
1 a1 2003-05-23 19:30:00 aberdeen town hall 1
NULL a2 2003-05-23 19:30:00 NULL NULL
select * from t1 left join t2 on (venue_id = entity_id and match(name) against('aberdeen')) where dt = '2003-05-23 19:30:00';
venue_id venue_text dt name entity_id
1 a1 2003-05-23 19:30:00 aberdeen town hall 1
NULL a2 2003-05-23 19:30:00 NULL NULL
drop table t1,t2;
drop table t1,t2;
mysql-test/t/create.test
View file @
73fe3812
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
--
disable_warnings
--
disable_warnings
drop
table
if
exists
t1
,
t2
,
t3
;
drop
table
if
exists
t1
,
t2
,
t3
;
drop
database
if
exists
test_
$
1
;
--
enable_warnings
--
enable_warnings
create
table
t1
(
b
char
(
0
));
create
table
t1
(
b
char
(
0
));
...
@@ -57,6 +58,7 @@ select 1ea10.1a20,1e+ 1e+10 from 1ea10;
...
@@ -57,6 +58,7 @@ select 1ea10.1a20,1e+ 1e+10 from 1ea10;
drop
table
1
ea10
;
drop
table
1
ea10
;
create
table
t1
(
t1
.
index
int
);
create
table
t1
(
t1
.
index
int
);
drop
table
t1
;
drop
table
t1
;
# Test that we get warning for this
drop
database
if
exists
test_
$
1
;
drop
database
if
exists
test_
$
1
;
create
database
test_
$
1
;
create
database
test_
$
1
;
create
table
test_
$
1.
$test1
(
a
$
1
int
,
$b
int
,
c
$
int
);
create
table
test_
$
1.
$test1
(
a
$
1
int
,
$b
int
,
c
$
int
);
...
@@ -245,7 +247,6 @@ drop table t3;
...
@@ -245,7 +247,6 @@ drop table t3;
show
create
table
t3
;
show
create
table
t3
;
select
*
from
t3
;
select
*
from
t3
;
drop
table
t2
,
t3
;
drop
table
t2
,
t3
;
drop
database
if
exists
test_
$
1
;
create
database
test_
$
1
;
create
database
test_
$
1
;
create
table
test_
$
1.
t3
like
t1
;
create
table
test_
$
1.
t3
like
t1
;
create
temporary
table
t3
like
test_
$
1.
t3
;
create
temporary
table
t3
like
test_
$
1.
t3
;
...
@@ -326,9 +327,6 @@ drop table t1, t2;
...
@@ -326,9 +327,6 @@ drop table t1, t2;
# Bug #1209
# Bug #1209
#
#
--
disable_warnings
drop
database
if
exists
test_
$
1
;
--
enable_warnings
create
database
test_
$
1
;
create
database
test_
$
1
;
use
test_
$1
;
use
test_
$1
;
select
database
();
select
database
();
...
...
mysql-test/t/fulltext.test
View file @
73fe3812
...
@@ -80,6 +80,17 @@ delete from t1 where MATCH(a,b) AGAINST ("indexes");
...
@@ -80,6 +80,17 @@ delete from t1 where MATCH(a,b) AGAINST ("indexes");
select
*
from
t1
;
select
*
from
t1
;
drop
table
t1
;
drop
table
t1
;
#
# why to scan strings for trunc*
#
create
table
t1
(
a
varchar
(
200
)
not
null
,
fulltext
(
a
));
insert
t1
values
(
"aaa10 bbb20"
),
(
"aaa20 bbb15"
),
(
"aaa30 bbb10"
);
select
*
from
t1
where
match
a
against
(
"+aaa* +bbb*"
in
boolean
mode
);
select
*
from
t1
where
match
a
against
(
"+aaa* +bbb1*"
in
boolean
mode
);
select
*
from
t1
where
match
a
against
(
"+aaa* +ccc*"
in
boolean
mode
);
select
*
from
t1
where
match
a
against
(
"+aaa10 +(bbb*)"
in
boolean
mode
);
drop
table
t1
;
#
#
# Check bug reported by Matthias Urlichs
# Check bug reported by Matthias Urlichs
#
#
...
...
mysql-test/t/fulltext_left_join.test
View file @
73fe3812
...
@@ -41,5 +41,7 @@ create table t2 (name varchar(255) not null default '', entity_id int(11) not nu
...
@@ -41,5 +41,7 @@ create table t2 (name varchar(255) not null default '', entity_id int(11) not nu
insert
into
t2
(
name
,
entity_id
)
values
(
'aberdeen town hall'
,
1
),
(
'glasgow royal concert hall'
,
2
),
(
'queen\'s hall, edinburgh'
,
3
);
insert
into
t2
(
name
,
entity_id
)
values
(
'aberdeen town hall'
,
1
),
(
'glasgow royal concert hall'
,
2
),
(
'queen\'s hall, edinburgh'
,
3
);
select
*
from
t1
left
join
t2
on
venue_id
=
entity_id
where
match
(
name
)
against
(
'aberdeen'
in
boolean
mode
)
and
dt
=
'2003-05-23 19:30:00'
;
select
*
from
t1
left
join
t2
on
venue_id
=
entity_id
where
match
(
name
)
against
(
'aberdeen'
in
boolean
mode
)
and
dt
=
'2003-05-23 19:30:00'
;
select
*
from
t1
left
join
t2
on
venue_id
=
entity_id
where
match
(
name
)
against
(
'aberdeen'
)
and
dt
=
'2003-05-23 19:30:00'
;
select
*
from
t1
left
join
t2
on
venue_id
=
entity_id
where
match
(
name
)
against
(
'aberdeen'
)
and
dt
=
'2003-05-23 19:30:00'
;
select
*
from
t1
left
join
t2
on
(
venue_id
=
entity_id
and
match
(
name
)
against
(
'aberdeen'
in
boolean
mode
))
where
dt
=
'2003-05-23 19:30:00'
;
select
*
from
t1
left
join
t2
on
(
venue_id
=
entity_id
and
match
(
name
)
against
(
'aberdeen'
))
where
dt
=
'2003-05-23 19:30:00'
;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
sql/ha_innodb.cc
View file @
73fe3812
...
@@ -1536,7 +1536,7 @@ ha_innobase::open(
...
@@ -1536,7 +1536,7 @@ ha_innobase::open(
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Warning: table %s key_used_on_scan is %lu even though there is no
\n
"
"InnoDB: Warning: table %s key_used_on_scan is %lu even though there is no
\n
"
"InnoDB: primary key inside InnoDB.
\n
"
,
"InnoDB: primary key inside InnoDB.
\n
"
,
name
,
(
ul
int
)
key_used_on_scan
);
name
,
(
ul
ong
)
key_used_on_scan
);
}
}
}
}
...
@@ -3216,7 +3216,7 @@ ha_innobase::position(
...
@@ -3216,7 +3216,7 @@ ha_innobase::position(
if
(
len
!=
ref_length
)
{
if
(
len
!=
ref_length
)
{
fprintf
(
stderr
,
fprintf
(
stderr
,
"InnoDB: Error: stored ref len is %lu, but table ref len is %lu
\n
"
,
"InnoDB: Error: stored ref len is %lu, but table ref len is %lu
\n
"
,
(
ul
int
)
len
,
(
ulint
)
ref_length
);
(
ul
ong
)
len
,
(
ulong
)
ref_length
);
}
}
}
}
...
@@ -4187,7 +4187,8 @@ ha_innobase::info(
...
@@ -4187,7 +4187,8 @@ ha_innobase::info(
"InnoDB: .frm files from different installations? See section
\n
"
"InnoDB: .frm files from different installations? See section
\n
"
"InnoDB: 15.1 at http://www.innodb.com/ibman.html
\n
"
,
"InnoDB: 15.1 at http://www.innodb.com/ibman.html
\n
"
,
index
->
name
,
index
->
name
,
ib_table
->
name
,
index
->
n_uniq
,
ib_table
->
name
,
(
unsigned
long
)
index
->
n_uniq
,
j
+
1
);
j
+
1
);
break
;
break
;
}
}
...
...
sql/item_func.cc
View file @
73fe3812
...
@@ -2701,6 +2701,7 @@ void Item_func_match::init_search(bool no_order)
...
@@ -2701,6 +2701,7 @@ void Item_func_match::init_search(bool no_order)
bool
Item_func_match
::
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tlist
,
Item
**
ref
)
bool
Item_func_match
::
fix_fields
(
THD
*
thd
,
TABLE_LIST
*
tlist
,
Item
**
ref
)
{
{
Item
*
item
;
Item
*
item
;
LINT_INIT
(
item
);
// Safe as arg_count is > 1
maybe_null
=
1
;
maybe_null
=
1
;
join_key
=
0
;
join_key
=
0
;
...
...
sql/mysqld.cc
View file @
73fe3812
This diff is collapsed.
Click to expand it.
strings/bmove512.c
View file @
73fe3812
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
#define LONG ulonglong
#define LONG ulonglong
#endif
#endif
void
bmove512
(
register
gptr
to
,
register
const
gptr
from
,
register
uint
length
)
void
bmove512
(
gptr
to
,
const
gptr
from
,
register
uint
length
)
{
{
reg1
LONG
*
f
,
*
t
,
*
end
=
(
LONG
*
)
((
char
*
)
from
+
length
);
reg1
LONG
*
f
,
*
t
,
*
end
=
(
LONG
*
)
((
char
*
)
from
+
length
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment