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

@@ -14,8 +14,8 @@ select n_nationkey, n_name into outfile '/tmp/bug3935_outfile.txt'
FIELDS TERMINATED BY '|' LINES TERMINATED BY '/n' from nation;
--exec rm -f /tmp/bug3935_outfile.txt
select n_nationkey, n_name from nation into outfile '/tmp/bug3935_outfile.txt'
FIELDS TERMINATED BY '|' LINES TERMINATED BY '/n';
select n_nationkey, n_name into outfile '/tmp/bug3935_outfile.txt'
FIELDS TERMINATED BY '|' LINES TERMINATED BY '/n' from nation;
--exec rm -f /tmp/bug3935_outfile.txt
select n_nationkey, n_name into outfile '/tmp/bug3935_outfile.txt'
@@ -24,14 +24,14 @@ from nation;
--exec rm -f /tmp/bug3935_outfile.txt
SELECT 'ID', 'Name' UNION (SELECT n_nationkey, n_name
FROM nation ORDER BY n_name DESC) INTO OUTFILE
'/tmp/bug3935_outfile.txt' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n';
ORDER BY n_name DESC) INTO OUTFILE
'/tmp/bug3935_outfile.txt' FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' FROM nation;
--exec rm -f /tmp/bug3935_outfile.txt
SELECT 'ID', 'Name' UNION (SELECT n_nationkey, n_name
FROM nation ORDER BY n_name DESC) INTO OUTFILE
ORDER BY n_name DESC) INTO OUTFILE
'/tmp/bug3935_outfile.txt' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n';
LINES TERMINATED BY '\n' FROM nation;
--exec rm -f /tmp/bug3935_outfile.txt
SELECT *