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
2e804faa
Commit
2e804faa
authored
Aug 18, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Manual merge
parent
a166d8ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
mysql-test/t/view.test
mysql-test/t/view.test
+11
-0
No files found.
mysql-test/t/view.test
View file @
2e804faa
...
...
@@ -1943,6 +1943,17 @@ create view v1 as select timestampdiff(day,'1997-01-01 00:00:00','1997-01-02 00:
select
*
from
v1
;
drop
view
v1
;
#
# Bug #10624 Views with multiple UNION and UNION ALL produce incorrect results
#
create
table
t1
(
f1
int
);
create
table
t2
(
f1
int
);
insert
into
t1
values
(
1
);
insert
into
t2
values
(
2
);
create
view
v1
as
select
*
from
t1
union
select
*
from
t2
union
all
select
*
from
t2
;
select
*
from
v1
;
drop
view
v1
;
drop
table
t1
,
t2
;
#
# Test for bug #10970: view referring a temporary table indirectly
#
...
...
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