From 0ffe0405464e48bfe334d11967fa0e1f53a49d67 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Thu, 14 Jun 2012 09:31:33 +0000 Subject: [PATCH] Updated the test list to take into account Trac #558 (hexadecimal numbers inside strings) SVN:trunk[2107] --- test/testlist.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/testlist.inc.php b/test/testlist.inc.php index ce62839bf..ef566c0e7 100644 --- a/test/testlist.inc.php +++ b/test/testlist.inc.php @@ -140,6 +140,8 @@ class TestOQLParser extends TestFunction $aQueries = array( 'SELECT toto' => true, 'SELECT toto WHERE toto.a = 1' => true, + 'SELECT toto WHERE toto.a = 0xC' => true, + 'SELECT toto WHERE toto.a = \'AXDVFS0xCZ32\'' => true, 'SELECT toto WHERE toto.a = :myparameter' => true, 'SELECT toto WHERE toto.a IN (:param1)' => true, 'SELECT toto WHERE toto.a IN (:param1, :param2)' => true,