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
5d478f53
Commit
5d478f53
authored
Feb 08, 2016
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#19817021
test case for ALTER TABLE view CHECK PARTITION
parent
6703e5b6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
mysql-test/r/view.result
mysql-test/r/view.result
+8
-0
mysql-test/t/view.test
mysql-test/t/view.test
+10
-0
No files found.
mysql-test/r/view.result
View file @
5d478f53
...
@@ -5512,6 +5512,14 @@ execute stmt;
...
@@ -5512,6 +5512,14 @@ execute stmt;
deallocate prepare stmt;
deallocate prepare stmt;
drop view v1,v2;
drop view v1,v2;
drop table `t1`;
drop table `t1`;
create table t1 (a int, b int);
create view v1 as select a+b from t1;
alter table v1 check partition p1;
Table Op Msg_type Msg_text
test.v1 check Error 'test.v1' is not BASE TABLE
test.v1 check status Operation failed
drop view v1;
drop table t1;
# -----------------------------------------------------------------
# -----------------------------------------------------------------
# -- End of 5.5 tests.
# -- End of 5.5 tests.
# -----------------------------------------------------------------
# -----------------------------------------------------------------
...
...
mysql-test/t/view.test
View file @
5d478f53
...
@@ -5480,6 +5480,16 @@ deallocate prepare stmt;
...
@@ -5480,6 +5480,16 @@ deallocate prepare stmt;
drop view v1,v2;
drop view v1,v2;
drop table `
t1
`
;
drop table `
t1
`
;
#
# Bug#19817021
#
create
table
t1
(
a
int
,
b
int
);
create
view
v1
as
select
a
+
b
from
t1
;
alter
table
v1
check
partition
p1
;
drop
view
v1
;
drop
table
t1
;
--
echo
# -----------------------------------------------------------------
--
echo
# -----------------------------------------------------------------
--
echo
# -- End of 5.5 tests.
--
echo
# -- End of 5.5 tests.
--
echo
# -----------------------------------------------------------------
--
echo
# -----------------------------------------------------------------
...
...
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