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
dead2e0f
Commit
dead2e0f
authored
Sep 29, 2006
by
evgen@moonbone.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
view.test:
After merge fix
parent
ee67c4c4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
mysql-test/t/view.test
mysql-test/t/view.test
+10
-10
No files found.
mysql-test/t/view.test
View file @
dead2e0f
...
@@ -347,13 +347,13 @@ create view v3 (x,y,z) as select b, a, b from t1;
...
@@ -347,13 +347,13 @@ create view v3 (x,y,z) as select b, a, b from t1;
create
view
v4
(
x
,
y
,
z
)
as
select
c
+
1
,
b
,
a
from
t1
;
create
view
v4
(
x
,
y
,
z
)
as
select
c
+
1
,
b
,
a
from
t1
;
create
algorithm
=
temptable
view
v5
(
x
,
y
,
z
)
as
select
c
,
b
,
a
from
t1
;
create
algorithm
=
temptable
view
v5
(
x
,
y
,
z
)
as
select
c
,
b
,
a
from
t1
;
# try insert to VIEW with fields duplicate
# try insert to VIEW with fields duplicate
--
error
147
0
--
error
147
1
insert
into
v3
values
(
-
60
,
4
,
30
);
insert
into
v3
values
(
-
60
,
4
,
30
);
# try insert to VIEW with expression in SELECT list
# try insert to VIEW with expression in SELECT list
--
error
147
0
--
error
147
1
insert
into
v4
values
(
-
60
,
4
,
30
);
insert
into
v4
values
(
-
60
,
4
,
30
);
# try insert to VIEW using temporary table algorithm
# try insert to VIEW using temporary table algorithm
--
error
147
0
--
error
147
1
insert
into
v5
values
(
-
60
,
4
,
30
);
insert
into
v5
values
(
-
60
,
4
,
30
);
insert
into
v1
values
(
-
60
,
4
,
30
);
insert
into
v1
values
(
-
60
,
4
,
30
);
insert
into
v1
(
z
,
y
,
x
)
values
(
50
,
6
,
-
100
);
insert
into
v1
(
z
,
y
,
x
)
values
(
50
,
6
,
-
100
);
...
@@ -375,13 +375,13 @@ create view v3 (x,y,z) as select b, a, b from t1;
...
@@ -375,13 +375,13 @@ create view v3 (x,y,z) as select b, a, b from t1;
create
view
v4
(
x
,
y
,
z
)
as
select
c
+
1
,
b
,
a
from
t1
;
create
view
v4
(
x
,
y
,
z
)
as
select
c
+
1
,
b
,
a
from
t1
;
create
algorithm
=
temptable
view
v5
(
x
,
y
,
z
)
as
select
c
,
b
,
a
from
t1
;
create
algorithm
=
temptable
view
v5
(
x
,
y
,
z
)
as
select
c
,
b
,
a
from
t1
;
# try insert to VIEW with fields duplicate
# try insert to VIEW with fields duplicate
--
error
147
0
--
error
147
1
insert
into
v3
select
c
,
b
,
a
from
t2
;
insert
into
v3
select
c
,
b
,
a
from
t2
;
# try insert to VIEW with expression in SELECT list
# try insert to VIEW with expression in SELECT list
--
error
147
0
--
error
147
1
insert
into
v4
select
c
,
b
,
a
from
t2
;
insert
into
v4
select
c
,
b
,
a
from
t2
;
# try insert to VIEW using temporary table algorithm
# try insert to VIEW using temporary table algorithm
--
error
147
0
--
error
147
1
insert
into
v5
select
c
,
b
,
a
from
t2
;
insert
into
v5
select
c
,
b
,
a
from
t2
;
insert
into
v1
select
c
,
b
,
a
from
t2
;
insert
into
v1
select
c
,
b
,
a
from
t2
;
insert
into
v1
(
z
,
y
,
x
)
select
a
+
20
,
b
+
2
,
-
100
from
t2
;
insert
into
v1
(
z
,
y
,
x
)
select
a
+
20
,
b
+
2
,
-
100
from
t2
;
...
@@ -1249,14 +1249,14 @@ drop table t1;
...
@@ -1249,14 +1249,14 @@ drop table t1;
#
#
create
table
t1
(
s1
smallint
);
create
table
t1
(
s1
smallint
);
create
view
v1
as
select
*
from
t1
where
20
<
(
select
(
s1
)
from
t1
);
create
view
v1
as
select
*
from
t1
where
20
<
(
select
(
s1
)
from
t1
);
--
error
147
0
--
error
147
1
insert
into
v1
values
(
30
);
insert
into
v1
values
(
30
);
create
view
v2
as
select
*
from
t1
;
create
view
v2
as
select
*
from
t1
;
create
view
v3
as
select
*
from
t1
where
20
<
(
select
(
s1
)
from
v2
);
create
view
v3
as
select
*
from
t1
where
20
<
(
select
(
s1
)
from
v2
);
--
error
147
0
--
error
147
1
insert
into
v3
values
(
30
);
insert
into
v3
values
(
30
);
create
view
v4
as
select
*
from
v2
where
20
<
(
select
(
s1
)
from
t1
);
create
view
v4
as
select
*
from
v2
where
20
<
(
select
(
s1
)
from
t1
);
--
error
147
0
--
error
147
1
insert
into
v4
values
(
30
);
insert
into
v4
values
(
30
);
drop
view
v4
,
v3
,
v2
,
v1
;
drop
view
v4
,
v3
,
v2
,
v1
;
drop
table
t1
;
drop
table
t1
;
...
@@ -2856,7 +2856,7 @@ DROP TABLE t1;
...
@@ -2856,7 +2856,7 @@ DROP TABLE t1;
#
#
create
table
t1
(
s1
int
);
create
table
t1
(
s1
int
);
create
view
v1
as
select
s1
as
a
,
s1
as
b
from
t1
;
create
view
v1
as
select
s1
as
a
,
s1
as
b
from
t1
;
--
error
147
0
--
error
147
1
insert
into
v1
values
(
1
,
1
);
insert
into
v1
values
(
1
,
1
);
update
v1
set
a
=
5
;
update
v1
set
a
=
5
;
drop
view
v1
;
drop
view
v1
;
...
...
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