Fix empty arrays parsing
[m6w6/ext-pq] / tests / types002.phpt
index 7122cf1e3891a5bce26fcb1a1a6df75b0ea3d4b0..9d36788706311b8a414e5d3f8de8b2fca0288071 100644 (file)
@@ -22,11 +22,11 @@ true as bool,
 1.1::float4 as float4,
 2.2::float8 as float8,
 '2013-01-01'::date as date,
-1::abstime as abstime,
 '2013-01-01 01:01:01'::timestamp as timestamp,
 '2013-01-01 01:01:01 UTC'::timestamptz as timestamptz,
 array[array[1,2,3],array[4,5,6],array[NULL::int,NULL::int,NULL::int]] as intarray,
-array[box(point(1,2),point(2,3)),box(point(4,5),point(5,6))] as boxarray
+array[box(point(1,2),point(2,3)),box(point(4,5),point(5,6))] as boxarray,
+array[]::text[] as emptyarray
 ");
 var_dump($r->fetchRow(pq\Result::FETCH_ASSOC));
 ?>
@@ -59,17 +59,6 @@ array(13) {
     ["timezone"]=>
     string(3) "UTC"
   }
-  ["abstime"]=>
-  object(pq\DateTime)#%d (4) {
-    ["format"]=>
-    string(11) "Y-m-d H:i:s"
-    ["date"]=>
-    string(%d) "1970-01-01 00:00:01%r(\.000000)?%r"
-    ["timezone_type"]=>
-    int(1)
-    ["timezone"]=>
-    string(6) "+00:00"
-  }
   ["timestamp"]=>
   object(pq\DateTime)#%d (4) {
     ["format"]=>
@@ -129,5 +118,8 @@ array(13) {
     [1]=>
     string(11) "(5,6),(4,5)"
   }
+  ["emptyarray"]=>
+  array(0) {
+  }
 }
 DONE
\ No newline at end of file