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
d72f1c9b
Commit
d72f1c9b
authored
Jul 13, 2005
by
evgen@moonbone.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
view.result, view.test:
Fix for test case for bug#11709
parent
bb1f8160
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
mysql-test/r/view.result
mysql-test/r/view.result
+1
-0
mysql-test/t/view.test
mysql-test/t/view.test
+1
-0
No files found.
mysql-test/r/view.result
View file @
d72f1c9b
...
...
@@ -1956,6 +1956,7 @@ f3 f1
2 1
3 2
1 3
drop view v1;
drop table t1;
CREATE TABLE t1 (f1 char) ENGINE = innodb;
INSERT INTO t1 VALUES ('A');
...
...
mysql-test/t/view.test
View file @
d72f1c9b
...
...
@@ -1796,6 +1796,7 @@ create table t1 (f1 int, f2 int);
create
view
v1
as
select
f1
as
f3
,
f2
as
f1
from
t1
;
insert
into
t1
values
(
1
,
3
),(
2
,
1
),(
3
,
2
);
select
*
from
v1
order
by
f1
;
drop
view
v1
;
drop
table
t1
;
#
...
...
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