diff options
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/func_test.result | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/func_test.result b/mysql-test/r/func_test.result index efae9e9f2fc..9a5cc666ca8 100644 --- a/mysql-test/r/func_test.result +++ b/mysql-test/r/func_test.result @@ -256,6 +256,7 @@ NULL NULL select mod(NULL, 2.0) as 'NULL'; NULL +NULL create table t1 (a int, b int); insert into t1 values (1,2), (2,3), (3,4), (4,5); select * from t1 where a not between 1 and 2; |