summaryrefslogtreecommitdiff
path: root/mysql-test/include
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2018-10-14 18:05:40 +0200
committerSergei Golubchik <serg@mariadb.org>2018-10-31 16:06:16 +0100
commitdfbba3d20220e5c9219b4b879e2d99999d53c05d (patch)
tree2815e5b9b9d233534f7be7a43341aea11972969b /mysql-test/include
parent92bde778269b8a2f1df130cee987b6458ea38307 (diff)
downloadmariadb-git-dfbba3d20220e5c9219b4b879e2d99999d53c05d.tar.gz
cleanup: get rid of a SQL warning in a test
Diffstat (limited to 'mysql-test/include')
-rw-r--r--mysql-test/include/diff_tables.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/diff_tables.inc b/mysql-test/include/diff_tables.inc
index b5ee4db0e8f..a29156cfce9 100644
--- a/mysql-test/include/diff_tables.inc
+++ b/mysql-test/include/diff_tables.inc
@@ -167,7 +167,7 @@ while ($_dt_tables)
# the table to a file.
--let $_dt_outfile= `SELECT @@datadir`
--let $_dt_outfile= $_dt_outfile/diff_table-$_dt_connection-$_dt_database-$_dt_table
- eval SELECT * FROM $_dt_database.$_dt_table ORDER BY `$_dt_column_list` INTO OUTFILE '$_dt_outfile';
+ eval SELECT * INTO OUTFILE '$_dt_outfile' FROM $_dt_database.$_dt_table ORDER BY `$_dt_column_list`;
# Compare files.
if ($_dt_prev_outfile)