diff options
Diffstat (limited to 'tests/Utils/QueryTest.php')
-rw-r--r-- | tests/Utils/QueryTest.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/Utils/QueryTest.php b/tests/Utils/QueryTest.php index faae263..9f54b7b 100644 --- a/tests/Utils/QueryTest.php +++ b/tests/Utils/QueryTest.php @@ -85,6 +85,14 @@ class QueryTest extends TestCase ), ), array( + 'LOAD DATA INFILE \'/tmp/test.txt\' INTO TABLE test', + array( + 'is_affected' => true, + 'is_insert' => true, + 'querytype' => 'LOAD', + ), + ), + array( 'INSERT INTO tbl VALUES (1)', array( 'is_affected' => true, |