mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Reverted wrong patch for CREATE TABLE .. SELECT
This commit is contained in:
@ -15,13 +15,13 @@ insert into sales values ( 'Computer', 'India',2000, 1200),
|
||||
( 'Computer', 'United States', 2000,1500),
|
||||
( 'Calculator', 'United States', 2000,75);
|
||||
select product, country , year, sum(profit) from sales group by product, country, year with cube;
|
||||
This version of MySQL doesn't yet support 'CUBE',
|
||||
This version of MySQL doesn't yet support 'CUBE'
|
||||
explain select product, country , year, sum(profit) from sales group by product, country, year with cube;
|
||||
This version of MySQL doesn't yet support 'CUBE',
|
||||
This version of MySQL doesn't yet support 'CUBE'
|
||||
select product, country , year, sum(profit) from sales group by product, country, year with rollup;
|
||||
This version of MySQL doesn't yet support 'ROLLUP',
|
||||
This version of MySQL doesn't yet support 'ROLLUP'
|
||||
explain select product, country , year, sum(profit) from sales group by product, country, year with rollup;
|
||||
This version of MySQL doesn't yet support 'ROLLUP',
|
||||
This version of MySQL doesn't yet support 'ROLLUP'
|
||||
select product, country , year, sum(profit) from sales group by product, country, year with cube union all select product, country , year, sum(profit) from sales group by product, country, year with rollup;
|
||||
This version of MySQL doesn't yet support 'CUBE',
|
||||
This version of MySQL doesn't yet support 'CUBE'
|
||||
drop table sales;
|
||||
|
@ -120,6 +120,7 @@ set myisam_max_sort_file_size=default;
|
||||
show variables like 'myisam_max_sort_file_size';
|
||||
Variable_name Value
|
||||
myisam_max_sort_file_size 20000
|
||||
set global net_retry_count=10, session net_retry_count=10;
|
||||
set global net_buffer_length=1024, net_write_timeout=200, net_read_timeout=300;
|
||||
set session net_buffer_length=2048, net_write_timeout=500, net_read_timeout=600;
|
||||
show global variables like 'net_%';
|
||||
|
@ -73,6 +73,7 @@ show global variables like 'myisam_max_sort_file_size';
|
||||
set myisam_max_sort_file_size=default;
|
||||
show variables like 'myisam_max_sort_file_size';
|
||||
|
||||
set global net_retry_count=10, session net_retry_count=10;
|
||||
set global net_buffer_length=1024, net_write_timeout=200, net_read_timeout=300;
|
||||
set session net_buffer_length=2048, net_write_timeout=500, net_read_timeout=600;
|
||||
show global variables like 'net_%';
|
||||
|
Reference in New Issue
Block a user