X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftypes002.phpt;h=9d36788706311b8a414e5d3f8de8b2fca0288071;hp=e2d772d29393b8bbb17d5a90cabb3b05e8a287c2;hb=HEAD;hpb=5ba3107011d4050d5ae5877dae80e382dc228e6a diff --git a/tests/types002.phpt b/tests/types002.phpt index e2d772d..c288ec1 100644 --- a/tests/types002.phpt +++ b/tests/types002.phpt @@ -25,14 +25,17 @@ true as bool, '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, +'foo\n'::bytea as bytea, +'foo\n'::bytea::text as bytea_text "); var_dump($r->fetchRow(pq\Result::FETCH_ASSOC)); ?> DONE --EXPECTF-- Test -array(12) { +array(15) { ["null"]=> NULL ["bool"]=> @@ -117,5 +120,13 @@ array(12) { [1]=> string(11) "(5,6),(4,5)" } + ["emptyarray"]=> + array(0) { + } + ["bytea"]=> + string(4) "foo +" + ["bytea_text"]=> + string(10) "\x666f6f0a" } -DONE \ No newline at end of file +DONE