1
0
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:
Timofey Turenko
2025-04-03 01:20:06 +03:00
committed by Leonid Fedorov
parent 41beae9a25
commit 8c8e3ab842
12 changed files with 24 additions and 49 deletions

View File

@@ -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;