diff options
Diffstat (limited to 'mysql-test/r/outfile2.result')
-rw-r--r-- | mysql-test/r/outfile2.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/outfile2.result b/mysql-test/r/outfile2.result new file mode 100644 index 00000000000..4dc09f65b7c --- /dev/null +++ b/mysql-test/r/outfile2.result @@ -0,0 +1,10 @@ +drop table if exists t1; +CREATE TABLE t1 (a INT); +EXPLAIN +SELECT * +INTO OUTFILE '/tmp/t1.txt' + FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\r\n' + FROM t1; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 system NULL NULL NULL NULL 0 const row not found +DROP TABLE t1; |