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
2b6b5b63
Commit
2b6b5b63
authored
Jun 15, 2006
by
ingo@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/mydev/mysql-5.0-amerge
into mysql.com:/home/mydev/mysql-5.1-amerge
parents
88b0e989
76f066aa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
2 deletions
+18
-2
mysql-test/r/merge.result
mysql-test/r/merge.result
+6
-0
mysql-test/t/lock_multi.test
mysql-test/t/lock_multi.test
+2
-1
mysql-test/t/merge.test
mysql-test/t/merge.test
+9
-0
sql/ha_myisammrg.h
sql/ha_myisammrg.h
+1
-1
No files found.
mysql-test/r/merge.result
View file @
2b6b5b63
...
@@ -779,3 +779,9 @@ insert into t1 values ("Monty"),("WAX"),("Walrus");
...
@@ -779,3 +779,9 @@ insert into t1 values ("Monty"),("WAX"),("Walrus");
alter table t1 engine=MERGE;
alter table t1 engine=MERGE;
ERROR HY000: Table storage engine for 't1' doesn't have this option
ERROR HY000: Table storage engine for 't1' doesn't have this option
drop table t1;
drop table t1;
create table t1 (b bit(1));
create table t2 (b bit(1));
create table tm (b bit(1)) engine = merge union = (t1,t2);
select * from tm;
b
drop table tm, t1, t2;
mysql-test/t/lock_multi.test
View file @
2b6b5b63
...
@@ -157,7 +157,7 @@ use test;
...
@@ -157,7 +157,7 @@ use test;
#
#
connection
default
;
connection
default
;
#
End of 5.0 tests
#
# Bug#19815 - CREATE/RENAME/DROP DATABASE can deadlock on a global read lock
# Bug#19815 - CREATE/RENAME/DROP DATABASE can deadlock on a global read lock
#
#
connect
(
con1
,
localhost
,
root
,,);
connect
(
con1
,
localhost
,
root
,,);
...
@@ -191,3 +191,4 @@ disconnect con2;
...
@@ -191,3 +191,4 @@ disconnect con2;
--
error
ER_DB_DROP_EXISTS
--
error
ER_DB_DROP_EXISTS
DROP
DATABASE
mysqltest_1
;
DROP
DATABASE
mysqltest_1
;
# End of 5.0 tests
mysql-test/t/merge.test
View file @
2b6b5b63
...
@@ -393,4 +393,13 @@ insert into t1 values ("Monty"),("WAX"),("Walrus");
...
@@ -393,4 +393,13 @@ insert into t1 values ("Monty"),("WAX"),("Walrus");
alter
table
t1
engine
=
MERGE
;
alter
table
t1
engine
=
MERGE
;
drop
table
t1
;
drop
table
t1
;
#
# BUG#19648 - Merge table does not work with bit types
#
create
table
t1
(
b
bit
(
1
));
create
table
t2
(
b
bit
(
1
));
create
table
tm
(
b
bit
(
1
))
engine
=
merge
union
=
(
t1
,
t2
);
select
*
from
tm
;
drop
table
tm
,
t1
,
t2
;
# End of 5.0 tests
# End of 5.0 tests
sql/ha_myisammrg.h
View file @
2b6b5b63
...
@@ -38,7 +38,7 @@ class ha_myisammrg: public handler
...
@@ -38,7 +38,7 @@ class ha_myisammrg: public handler
return
(
HA_REC_NOT_IN_SEQ
|
HA_AUTO_PART_KEY
|
HA_NO_TRANSACTIONS
|
return
(
HA_REC_NOT_IN_SEQ
|
HA_AUTO_PART_KEY
|
HA_NO_TRANSACTIONS
|
HA_NULL_IN_KEY
|
HA_CAN_INDEX_BLOBS
|
HA_FILE_BASED
|
HA_NULL_IN_KEY
|
HA_CAN_INDEX_BLOBS
|
HA_FILE_BASED
|
HA_CAN_INSERT_DELAYED
|
HA_ANY_INDEX_MAY_BE_UNIQUE
|
HA_CAN_INSERT_DELAYED
|
HA_ANY_INDEX_MAY_BE_UNIQUE
|
HA_NO_COPY_ON_ALTER
);
HA_
CAN_BIT_FIELD
|
HA_
NO_COPY_ON_ALTER
);
}
}
ulong
index_flags
(
uint
inx
,
uint
part
,
bool
all_parts
)
const
ulong
index_flags
(
uint
inx
,
uint
part
,
bool
all_parts
)
const
{
{
...
...
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