Details
-
Bug
-
Status: Open (View Workflow)
-
Critical
-
Resolution: Unresolved
-
10.6, 10.7(EOL), 10.8(EOL), 10.9(EOL), 10.11
-
None
Description
Test:
create table t1 (a int); |
insert into t1 values (1), (1), (2), (3), (2); |
create view v1 as select * from t1 order by a offset 2 rows; |
select * from v1; |
drop view v1; |
drop table t1; |
Expected result:
a
|
2
|
2
|
3
|
Actual result:
a
|
1
|
1
|
2
|
2
|
3
|
Attachments
Issue Links
- is part of
-
MDEV-27691 make working view-protocol
- Open