You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
Fix deprication warnings in the MTR with select * from .. into
This commit is contained in:
committed by
Leonid Fedorov
parent
41beae9a25
commit
8c8e3ab842
@@ -1,11 +1,6 @@
|
||||
USE tpch1;
|
||||
select count(*) from nation into outfile '/tmp/natcount.tbl';
|
||||
Warnings:
|
||||
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
|
||||
select count(*) into outfile '/tmp/natcount.tbl' from nation;
|
||||
select count(*) from nation;
|
||||
count(*)
|
||||
25
|
||||
select count(*) from nation into outfile 'nation.out';
|
||||
Warnings:
|
||||
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
|
||||
select count(*) into outfile 'nation.out' from nation;
|
||||
|
Reference in New Issue
Block a user