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
ccd87d34
Commit
ccd87d34
authored
Jan 03, 2020
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-16678: Ignore #sql-ib tables in main.partition_alter
We missed this in commit
89633995
.
parent
ca8c3be4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
mysql-test/main/partition_alter.test
mysql-test/main/partition_alter.test
+9
-2
No files found.
mysql-test/main/partition_alter.test
View file @
ccd87d34
...
...
@@ -86,7 +86,11 @@ show create table t1;
--
error
ER_CONSTRAINT_FAILED
insert
t1
values
(
2
,
'2020-01-03'
,
20
);
drop
table
t1
;
--
list_files
$datadir
/
test
--
let
$regexp
=/
#sql-ib[0-9a-f]+\.ibd\n//
--
list_files_write_file
$datadir
.
files
.
txt
$datadir
/
test
--
replace_regex
$regexp
--
cat_file
$datadir
.
files
.
txt
--
remove_file
$datadir
.
files
.
txt
# MyISAM, different execution path
create
table
t1
(
id
int
,
d
date
not
null
,
b
bool
not
null
default
0
,
primary
key
(
id
,
d
))
...
...
@@ -102,7 +106,10 @@ show create table t1;
--
error
ER_CONSTRAINT_FAILED
insert
t1
values
(
2
,
'2020-01-03'
,
20
);
drop
table
t1
;
--
list_files
$datadir
/
test
--
list_files_write_file
$datadir
.
files
.
txt
$datadir
/
test
--
replace_regex
$regexp
--
cat_file
$datadir
.
files
.
txt
--
remove_file
$datadir
.
files
.
txt
#
# MDEV-13097 Online alter of a partitioned MyISAM table with auto_increment
...
...
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