You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: mysql-test/main/default.result
+21
Original file line number
Diff line number
Diff line change
@@ -3463,5 +3463,26 @@ SELECT 1 FROM t1 GROUP BY DEFAULT(pk);
3463
3463
1
3464
3464
DROP TABLE t1;
3465
3465
#
3466
+
# MDEV-29890 Update with inner join false row count result
3467
+
#
3468
+
create table t1 (a int not null);
3469
+
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='t1';
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='v1';
create or replace view v1 as select * from t1 group by a;
3477
+
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='v1';
create or replace view v1 as select * from t1 group by a with rollup;
3481
+
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='v1';
Copy file name to clipboardexpand all lines: mysql-test/main/default.test
+14
Original file line number
Diff line number
Diff line change
@@ -2169,6 +2169,20 @@ INSERT INTO t1 VALUES (),();
2169
2169
SELECT 1 FROM t1 GROUP BY DEFAULT(pk);
2170
2170
DROP TABLE t1;
2171
2171
2172
+
--echo #
2173
+
--echo # MDEV-29890 Update with inner join false row count result
2174
+
--echo #
2175
+
create table t1 (a int not null);
2176
+
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='t1';
2177
+
create or replace view v1 as select * from t1;
2178
+
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='v1';
2179
+
create or replace view v1 as select * from t1 group by a;
2180
+
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='v1';
2181
+
create or replace view v1 as select * from t1 group by a with rollup;
2182
+
select column_name, column_default, column_default is not null as 'has_default', is_nullable from information_schema.columns where table_schema='test' and table_name='v1';
0 commit comments