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
743beccf
Commit
743beccf
authored
Jan 10, 2007
by
holyfoot/hf@deer.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/hf/work/22451/my51-22451
into mysql.com:/home/hf/work/mysql-5.1-mrg
parents
23acc5b6
76ab2a81
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
1 deletion
+28
-1
mysql-test/r/partition_federated.result
mysql-test/r/partition_federated.result
+6
-0
mysql-test/t/partition_federated.test
mysql-test/t/partition_federated.test
+21
-0
storage/federated/ha_federated.cc
storage/federated/ha_federated.cc
+1
-1
No files found.
mysql-test/r/partition_federated.result
0 → 100644
View file @
743beccf
drop table if exists t1;
create table t1 (s1 int) engine=federated
connection='mysql://root@localhost/federated/t1' partition by list (s1)
(partition p1 values in (1), partition p2 values in (2));
ERROR HY000: Engine cannot be used in partitioned tables
End of 5.1 tests
mysql-test/t/partition_federated.test
0 → 100644
View file @
743beccf
#
# Tests for partitioned FEDERATED
#
--
source
include
/
have_partition
.
inc
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_federated_db
.
inc
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
#
# Bug #22451 Partitions: duplicate results with engine=federated
#
--
error
ER_PARTITION_MERGE_ERROR
create
table
t1
(
s1
int
)
engine
=
federated
connection
=
'mysql://root@localhost/federated/t1'
partition
by
list
(
s1
)
(
partition
p1
values
in
(
1
),
partition
p2
values
in
(
2
));
--
echo
End
of
5.1
tests
storage/federated/ha_federated.cc
View file @
743beccf
...
...
@@ -405,7 +405,7 @@ int federated_db_init(void *p)
federated_hton
->
commit
=
federated_commit
;
federated_hton
->
rollback
=
federated_rollback
;
federated_hton
->
create
=
federated_create_handler
;
federated_hton
->
flags
=
HTON_ALTER_NOT_SUPPORTED
;
federated_hton
->
flags
=
HTON_ALTER_NOT_SUPPORTED
|
HTON_NO_PARTITION
;
if
(
pthread_mutex_init
(
&
federated_mutex
,
MY_MUTEX_INIT_FAST
))
goto
error
;
...
...
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