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
115efe10
Commit
115efe10
authored
Feb 01, 2009
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
Merge with old maria tree
parents
bd4e6551
5d2a1425
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
2 deletions
+15
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+0
-1
mysql-test/suite/maria/r/maria.result
mysql-test/suite/maria/r/maria.result
+5
-0
mysql-test/suite/maria/t/maria.test
mysql-test/suite/maria/t/maria.test
+10
-0
sql/ha_partition.cc
sql/ha_partition.cc
+0
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
115efe10
...
...
@@ -178,7 +178,6 @@ our @opt_extra_mysqltest_opt;
our
$opt_compress
;
our
$opt_ssl
;
our
$opt_skip_ssl
;
our
$opt_ssl_supported
;
our
$opt_ps_protocol
;
our
$opt_sp_protocol
;
...
...
mysql-test/suite/maria/r/maria.result
View file @
115efe10
...
...
@@ -2579,6 +2579,11 @@ ALTER TABLE t1 CHANGE c d varchar(10);
affected rows: 0
info: Records: 0 Duplicates: 0 Warnings: 0
drop table t1;
create table t1 (s1 int);
insert into t1 values (1);
alter table t1 partition by list (s1) (partition p1 values in (2));
ERROR HY000: Table has no partition for value 1
drop table t1;
create table t1 (c1 int);
create table t2 (c1 int);
lock table t1 read, t2 read;
...
...
mysql-test/suite/maria/t/maria.test
View file @
115efe10
...
...
@@ -1838,6 +1838,16 @@ ALTER TABLE t1 CHANGE c d varchar(10);
--
disable_info
drop
table
t1
;
#
# Bug #39227 Maria: crash with ALTER TABLE PARTITION
#
create
table
t1
(
s1
int
);
insert
into
t1
values
(
1
);
--
error
ER_NO_PARTITION_FOR_GIVEN_VALUE
alter
table
t1
partition
by
list
(
s1
)
(
partition
p1
values
in
(
2
));
drop
table
t1
;
#
# Bug #39226 Maria: crash with FLUSH TABLES WITH READ LOCK after LOCK TABLES
...
...
sql/ha_partition.cc
View file @
115efe10
...
...
@@ -5288,7 +5288,6 @@ int ha_partition::extra(enum ha_extra_function operation)
case
HA_EXTRA_FLUSH_CACHE
:
{
DBUG_RETURN
(
loop_extra
(
operation
));
break
;
}
case
HA_EXTRA_NO_READCHECK
:
{
...
...
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