diff options
Diffstat (limited to 'mysql-test/r/olap.result')
-rw-r--r-- | mysql-test/r/olap.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/olap.result b/mysql-test/r/olap.result index 8fb6f787795..b10f175b63e 100644 --- a/mysql-test/r/olap.result +++ b/mysql-test/r/olap.result @@ -255,11 +255,11 @@ concat(':',product,':') sum(profit) avg(profit) :TV: 600 120.00000 NULL 7785 519.00000 select product, country_id , year, sum(profit) from t1 group by product, country_id, year with cube; -ERROR 42000: This version of MySQL doesn't yet support 'CUBE' +ERROR 42000: This version of MariaDB doesn't yet support 'CUBE' explain select product, country_id , year, sum(profit) from t1 group by product, country_id, year with cube; -ERROR 42000: This version of MySQL doesn't yet support 'CUBE' +ERROR 42000: This version of MariaDB doesn't yet support 'CUBE' select product, country_id , year, sum(profit) from t1 group by product, country_id, year with cube union all select product, country_id , year, sum(profit) from t1 group by product, country_id, year with rollup; -ERROR 42000: This version of MySQL doesn't yet support 'CUBE' +ERROR 42000: This version of MariaDB doesn't yet support 'CUBE' drop table t1,t2; CREATE TABLE t1 (i int); INSERT INTO t1 VALUES(100); |