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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ae7e8b1d
Commit
ae7e8b1d
authored
Aug 29, 2005
by
ingo@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/mydev/mysql-4.1
into mysql.com:/home/mydev/mysql-4.1-4100
parents
6b265793
330eb045
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
206 additions
and
24 deletions
+206
-24
myisam/mi_search.c
myisam/mi_search.c
+23
-9
mysql-test/r/alter_table.result
mysql-test/r/alter_table.result
+15
-0
mysql-test/r/innodb.result
mysql-test/r/innodb.result
+16
-0
mysql-test/r/key.result
mysql-test/r/key.result
+16
-0
mysql-test/r/myisam.result
mysql-test/r/myisam.result
+14
-0
mysql-test/t/alter_table.test
mysql-test/t/alter_table.test
+31
-0
mysql-test/t/innodb.test
mysql-test/t/innodb.test
+18
-0
mysql-test/t/key.test
mysql-test/t/key.test
+16
-0
mysql-test/t/myisam.test
mysql-test/t/myisam.test
+15
-0
sql/sql_delete.cc
sql/sql_delete.cc
+16
-13
sql/sql_parse.cc
sql/sql_parse.cc
+18
-1
sql/sql_table.cc
sql/sql_table.cc
+8
-1
No files found.
myisam/mi_search.c
View file @
ae7e8b1d
...
...
@@ -316,19 +316,21 @@ int _mi_prefix_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
get_key_pack_length
(
kseg_len
,
length_pack
,
kseg
);
key_len_skip
=
length_pack
+
kseg_len
;
key_len_left
=
(
int
)
key_len
-
(
int
)
key_len_skip
;
/* If key_len is 0, then lenght_pack is 1, then key_len_left is -1. */
cmplen
=
(
key_len_left
>=
0
)
?
kseg_len
:
key_len
-
length_pack
;
DBUG_PRINT
(
"info"
,(
"key: '%.*s'"
,
kseg_len
,
kseg
));
/*
Keys are compressed the following way:
If the max length of first key segment <= 127
character
s the prefix is
If the max length of first key segment <= 127
byte
s the prefix is
1 byte else it's 2 byte
prefix The high bit is set if this is a prefix for the prev key
length Packed length if the previous was a prefix byte
[length] Length character of data
next-key-seg Next key segments
(prefix) length The high bit is set if this is a prefix for the prev key.
[suffix length] Packed length of suffix if the previous was a prefix.
(suffix) data Key data bytes (past the common prefix or whole segment).
[next-key-seg] Next key segments (([packed length], data), ...)
pointer Reference to the data file (last_keyseg->length).
*/
matched
=
0
;
/* how many char's from prefix were alredy matched */
...
...
@@ -349,16 +351,23 @@ int _mi_prefix_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
if
(
packed
)
{
if
(
suffix_len
==
0
)
/* Same key */
if
(
suffix_len
==
0
)
{
/* == 0x80 or 0x8000, same key, prefix length == old key length. */
prefix_len
=
len
;
}
else
{
/* > 0x80 or 0x8000, this is prefix lgt, packed suffix lgt follows. */
prefix_len
=
suffix_len
;
get_key_length
(
suffix_len
,
vseg
);
}
}
else
{
/* Not packed. No prefix used from last key. */
prefix_len
=
0
;
}
len
=
prefix_len
+
suffix_len
;
seg_len_pack
=
get_pack_length
(
len
);
...
...
@@ -414,7 +423,12 @@ int _mi_prefix_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
uint
left
;
uchar
*
k
=
kseg
+
prefix_len
;
left
=
(
len
>
cmplen
)
?
cmplen
-
prefix_len
:
suffix_len
;
/*
If prefix_len > cmplen then we are in the end-space comparison
phase. Do not try to acces the key any more ==> left= 0.
*/
left
=
((
len
<=
cmplen
)
?
suffix_len
:
((
prefix_len
<
cmplen
)
?
cmplen
-
prefix_len
:
0
));
matched
=
prefix_len
+
left
;
...
...
@@ -451,7 +465,7 @@ int _mi_prefix_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
my_flag
=
-
1
;
else
{
/* We have to compare k and vseg as if they w
h
ere space extended */
/* We have to compare k and vseg as if they were space extended */
uchar
*
end
=
k
+
(
cmplen
-
len
);
for
(
;
k
<
end
&&
*
k
==
' '
;
k
++
)
;
if
(
k
==
end
)
...
...
@@ -470,7 +484,7 @@ int _mi_prefix_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
if
((
nextflag
&
SEARCH_PREFIX
)
&&
key_len_left
==
0
)
goto
fix_flag
;
/* We have to compare k and vseg as if they w
h
ere space extended */
/* We have to compare k and vseg as if they were space extended */
for
(
end
=
vseg
+
(
len
-
cmplen
)
;
vseg
<
end
&&
*
vseg
==
(
uchar
)
' '
;
vseg
++
,
matched
++
)
;
...
...
mysql-test/r/alter_table.result
View file @
ae7e8b1d
...
...
@@ -528,3 +528,18 @@ create table t1 ( a timestamp );
alter table t1 add unique ( a(1) );
ERROR HY000: Incorrect sub part key; the used key part isn't a string, the used length is longer than the key part, or the storage engine doesn't support unique sub keys
drop table t1;
create database mysqltest1;
create table t1 (c1 int);
alter table t1 rename mysqltest1.t1;
drop table t1;
ERROR 42S02: Unknown table 't1'
alter table mysqltest1.t1 rename t1;
drop table t1;
create table t1 (c1 int);
use mysqltest1;
drop database mysqltest1;
alter table test.t1 rename t1;
ERROR 3D000: No database selected
alter table test.t1 rename test.t1;
use test;
drop table t1;
mysql-test/r/innodb.result
View file @
ae7e8b1d
...
...
@@ -1658,3 +1658,19 @@ a_id b_list
3 NULL
DROP TABLE t2;
DROP TABLE t1;
create temporary table t1 (a int) engine=innodb;
insert into t1 values (4711);
truncate t1;
insert into t1 values (42);
select * from t1;
a
42
drop table t1;
create table t1 (a int) engine=innodb;
insert into t1 values (4711);
truncate t1;
insert into t1 values (42);
select * from t1;
a
42
drop table t1;
mysql-test/r/key.result
View file @
ae7e8b1d
...
...
@@ -325,3 +325,19 @@ ERROR 42S21: Duplicate column name 'c1'
alter table t1 add key (c1,c1,c2);
ERROR 42S21: Duplicate column name 'c1'
drop table t1;
create table t1 (
c1 int,
c2 varchar(20) not null,
primary key (c1),
key (c2(10))
) engine=myisam;
insert into t1 values (1,'');
insert into t1 values (2,' \t\tTest String');
insert into t1 values (3,' \n\tTest String');
update t1 set c2 = 'New Test String' where c1 = 1;
select * from t1;
c1 c2
1 New Test String
2 Test String
3
Test String
mysql-test/r/myisam.result
View file @
ae7e8b1d
...
...
@@ -595,3 +595,17 @@ show keys from t1;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
t1 1 a 1 a A 8 NULL NULL YES BTREE
drop table t1;
create table t1 (c1 int);
insert into t1 values (1),(2),(3),(4);
checksum table t1;
Table Checksum
test.t1 149057747
delete from t1 where c1 = 1;
create table t2 as select * from t1;
checksum table t1;
Table Checksum
test.t1 984116287
checksum table t2;
Table Checksum
test.t2 984116287
drop table t1, t2;
mysql-test/t/alter_table.test
View file @
ae7e8b1d
...
...
@@ -361,4 +361,35 @@ create table t1 ( a timestamp );
alter
table
t1
add
unique
(
a
(
1
)
);
drop
table
t1
;
#
# Bug#11493 - Alter table rename to default database does not work without
# db name qualifying
#
create
database
mysqltest1
;
create
table
t1
(
c1
int
);
# Move table to other database.
alter
table
t1
rename
mysqltest1
.
t1
;
# Assure that it has moved.
--
error
1051
drop
table
t1
;
# Move table back.
alter
table
mysqltest1
.
t1
rename
t1
;
# Assure that it is back.
drop
table
t1
;
# Now test for correct message if no database is selected.
# Create t1 in 'test'.
create
table
t1
(
c1
int
);
# Change to other db.
use
mysqltest1
;
# Drop the current db. This de-selects any db.
drop
database
mysqltest1
;
# Now test for correct message.
--
error
1046
alter
table
test
.
t1
rename
t1
;
# Check that explicit qualifying works even with no selected db.
alter
table
test
.
t1
rename
test
.
t1
;
# Go back to standard 'test' db.
use
test
;
drop
table
t1
;
# End of 4.1 tests
mysql-test/t/innodb.test
View file @
ae7e8b1d
...
...
@@ -1202,4 +1202,22 @@ SELECT * FROM (SELECT t1.*,GROUP_CONCAT(t2.b_id SEPARATOR ',') as b_list FROM (t
DROP
TABLE
t2
;
DROP
TABLE
t1
;
#
# Bug#11816 - Truncate table doesn't work with temporary innodb tables
# This is not an innodb bug, but we test it using innodb.
#
create
temporary
table
t1
(
a
int
)
engine
=
innodb
;
insert
into
t1
values
(
4711
);
truncate
t1
;
insert
into
t1
values
(
42
);
select
*
from
t1
;
drop
table
t1
;
# Show that it works with permanent tables too.
create
table
t1
(
a
int
)
engine
=
innodb
;
insert
into
t1
values
(
4711
);
truncate
t1
;
insert
into
t1
values
(
42
);
select
*
from
t1
;
drop
table
t1
;
# End of 4.1 tests
mysql-test/t/key.test
View file @
ae7e8b1d
...
...
@@ -321,4 +321,20 @@ alter table t1 add key (c1,c2,c1);
alter
table
t1
add
key
(
c1
,
c1
,
c2
);
drop
table
t1
;
#
# Bug#12565 - ERROR 1034 when running simple UPDATE or DELETE
# on large MyISAM table
#
create
table
t1
(
c1
int
,
c2
varchar
(
20
)
not
null
,
primary
key
(
c1
),
key
(
c2
(
10
))
)
engine
=
myisam
;
insert
into
t1
values
(
1
,
''
);
insert
into
t1
values
(
2
,
' \t\tTest String'
);
insert
into
t1
values
(
3
,
' \n\tTest String'
);
update
t1
set
c2
=
'New Test String'
where
c1
=
1
;
select
*
from
t1
;
# End of 4.1 tests
mysql-test/t/myisam.test
View file @
ae7e8b1d
...
...
@@ -575,4 +575,19 @@ show keys from t1;
drop
table
t1
;
#
# Bug#12296 - CHECKSUM TABLE reports 0 for the table
# This happened if the first record was marked as deleted.
#
create
table
t1
(
c1
int
);
insert
into
t1
values
(
1
),(
2
),(
3
),(
4
);
checksum
table
t1
;
delete
from
t1
where
c1
=
1
;
create
table
t2
as
select
*
from
t1
;
# The following returns 0 with the bug in place.
checksum
table
t1
;
# The above should give the same number as the following.
checksum
table
t2
;
drop
table
t1
,
t2
;
# End of 4.1 tests
sql/sql_delete.cc
View file @
ae7e8b1d
...
...
@@ -617,6 +617,8 @@ int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok)
TABLE
*
table
=
*
table_ptr
;
table
->
file
->
info
(
HA_STATUS_AUTO
|
HA_STATUS_NO_LOCK
);
db_type
table_type
=
table
->
db_type
;
if
(
!
ha_supports_generate
(
table_type
))
goto
trunc_by_del
;
strmov
(
path
,
table
->
path
);
*
table_ptr
=
table
->
next
;
// Unlink table from list
close_temporary
(
table
,
0
);
...
...
@@ -635,7 +637,7 @@ int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok)
(
void
)
sprintf
(
path
,
"%s/%s/%s%s"
,
mysql_data_home
,
table_list
->
db
,
table_list
->
real_name
,
reg_ext
);
fn_format
(
path
,
path
,
""
,
""
,
4
);
fn_format
(
path
,
path
,
""
,
""
,
MY_UNPACK_FILENAME
);
if
(
!
dont_send_ok
)
{
...
...
@@ -647,18 +649,7 @@ int mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok)
DBUG_RETURN
(
-
1
);
}
if
(
!
ha_supports_generate
(
table_type
))
{
/* Probably InnoDB table */
ulong
save_options
=
thd
->
options
;
table_list
->
lock_type
=
TL_WRITE
;
thd
->
options
&=
~
(
ulong
)
(
OPTION_BEGIN
|
OPTION_NOT_AUTOCOMMIT
);
ha_enable_transaction
(
thd
,
FALSE
);
error
=
mysql_delete
(
thd
,
table_list
,
(
COND
*
)
0
,
(
SQL_LIST
*
)
0
,
HA_POS_ERROR
,
0
);
ha_enable_transaction
(
thd
,
TRUE
);
thd
->
options
=
save_options
;
DBUG_RETURN
(
error
);
}
goto
trunc_by_del
;
if
(
lock_and_wait_for_table_name
(
thd
,
table_list
))
DBUG_RETURN
(
-
1
);
}
...
...
@@ -693,4 +684,16 @@ end:
VOID
(
pthread_mutex_unlock
(
&
LOCK_open
));
}
DBUG_RETURN
(
error
?
-
1
:
0
);
trunc_by_del:
/* Probably InnoDB table */
ulong
save_options
=
thd
->
options
;
table_list
->
lock_type
=
TL_WRITE
;
thd
->
options
&=
~
(
ulong
)
(
OPTION_BEGIN
|
OPTION_NOT_AUTOCOMMIT
);
ha_enable_transaction
(
thd
,
FALSE
);
error
=
mysql_delete
(
thd
,
table_list
,
(
COND
*
)
0
,
(
SQL_LIST
*
)
0
,
HA_POS_ERROR
,
0
);
ha_enable_transaction
(
thd
,
TRUE
);
thd
->
options
=
save_options
;
DBUG_RETURN
(
error
);
}
sql/sql_parse.cc
View file @
ae7e8b1d
...
...
@@ -2599,7 +2599,24 @@ unsent_create_error:
break
;
}
if
(
!
select_lex
->
db
)
select_lex
->
db
=
tables
->
db
;
{
/*
In the case of ALTER TABLE ... RENAME we should supply the
default database if the new name is not explicitly qualified
by a database. (Bug #11493)
*/
if
(
lex
->
alter_info
.
flags
&
ALTER_RENAME
)
{
if
(
!
thd
->
db
)
{
send_error
(
thd
,
ER_NO_DB_ERROR
);
goto
error
;
}
select_lex
->
db
=
thd
->
db
;
}
else
select_lex
->
db
=
tables
->
db
;
}
if
(
check_access
(
thd
,
ALTER_ACL
,
tables
->
db
,
&
tables
->
grant
.
privilege
,
0
,
0
)
||
check_access
(
thd
,
INSERT_ACL
|
CREATE_ACL
,
select_lex
->
db
,
&
priv
,
0
,
0
)
||
check_merge_table_access
(
thd
,
tables
->
db
,
...
...
sql/sql_table.cc
View file @
ae7e8b1d
...
...
@@ -3745,9 +3745,16 @@ int mysql_checksum_table(THD *thd, TABLE_LIST *tables, HA_CHECK_OPT *check_opt)
protocol
->
store_null
();
else
{
while
(
!
t
->
file
->
rnd_next
(
t
->
record
[
0
])
)
for
(;;
)
{
ha_checksum
row_crc
=
0
;
int
error
=
t
->
file
->
rnd_next
(
t
->
record
[
0
]);
if
(
unlikely
(
error
))
{
if
(
error
==
HA_ERR_RECORD_DELETED
)
continue
;
break
;
}
if
(
t
->
record
[
0
]
!=
(
byte
*
)
t
->
field
[
0
]
->
ptr
)
row_crc
=
my_checksum
(
row_crc
,
t
->
record
[
0
],
((
byte
*
)
t
->
field
[
0
]
->
ptr
)
-
t
->
record
[
0
]);
...
...
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