Commit 9b6a1384 authored by unknown's avatar unknown

Tweaks for duplicate and missing lines in tests from a huge merge.


mysql-test/r/type_newdecimal.result:
  Make test clean up after itself.
mysql-test/t/ps_1general.test:
  Remove improperly merged lines.
mysql-test/t/type_newdecimal.test:
  Make test clean up after itself.
parent 8ceaccb3
...@@ -1406,6 +1406,7 @@ alter table t1 modify a decimal(10,2); ...@@ -1406,6 +1406,7 @@ alter table t1 modify a decimal(10,2);
select * from t1; select * from t1;
a a
123.12 123.12
drop table t1;
create table t1 (i int, j int); create table t1 (i int, j int);
insert into t1 values (1,1), (1,2), (2,3), (2,4); insert into t1 values (1,1), (1,2), (2,3), (2,4);
select i, count(distinct j) from t1 group by i; select i, count(distinct j) from t1 group by i;
......
...@@ -324,9 +324,6 @@ execute stmt4; ...@@ -324,9 +324,6 @@ execute stmt4;
# history (actions of the bdb engine). # history (actions of the bdb engine).
# That is the reason why, we switch the output here off. # That is the reason why, we switch the output here off.
# (The real output will be tested in ps_6bdb.test) # (The real output will be tested in ps_6bdb.test)
--disable_warnings
prepare stmt4 from ' show engine bdb logs ';
--enable_warnings
--disable_result_log --disable_result_log
prepare stmt4 from ' show engine bdb logs '; prepare stmt4 from ' show engine bdb logs ';
execute stmt4; execute stmt4;
......
...@@ -1105,6 +1105,7 @@ insert into t1 values(123.12); ...@@ -1105,6 +1105,7 @@ insert into t1 values(123.12);
select * from t1; select * from t1;
alter table t1 modify a decimal(10,2); alter table t1 modify a decimal(10,2);
select * from t1; select * from t1;
drop table t1;
# #
# Bug#19667 group by a decimal expression yields wrong result # Bug#19667 group by a decimal expression yields wrong result
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment