From: Norbert Buchmuller Date: Tue, 25 Nov 2008 04:34:29 +0000 (+0100) Subject: * Added a test for arrayref bind values in search to match PostgreSQL array type... X-Git-Tag: v0.08240~189^2~21 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c224117ba88568b567020a05c73566881c14e946;p=dbsrgits%2FDBIx-Class.git * Added a test for arrayref bind values in search to match PostgreSQL array type values. --- diff --git a/t/72pg.t b/t/72pg.t index 5322543..4c7721f 100644 --- a/t/72pg.t +++ b/t/72pg.t @@ -47,7 +47,7 @@ plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test '. unless ($dsn && $user && $pass); -plan tests => 35; +plan tests => 36; DBICTest::Schema->load_classes( 'Casecheck', 'ArrayTest' ); my $schema = DBICTest::Schema->connect($dsn, $user, $pass); @@ -133,7 +133,8 @@ is_deeply($type_info, $test_type_info, 'columns_info_for - column data types'); SKIP: { - skip "SQL::Abstract < 1.50 does not pass through arrayrefs", 2 if $SQL::Abstract::VERSION < 1.50; + skip "SQL::Abstract < 1.50 does not pass through arrayrefs", 3 + if $SQL::Abstract::VERSION < 1.50; lives_ok { $schema->resultset('ArrayTest')->create({ @@ -146,6 +147,18 @@ SKIP: { arrayfield => [3, 4], }); } 'updating arrayref as pg array data'; + + $schema->resultset('ArrayTest')->create({ + arrayfield => [5, 6], + }); + + my $count; + lives_ok { + $count = $schema->resultset('ArrayTest')->search({ + arrayfield => \[ '= ?' => [3, 4] ], #TODO anything less ugly than this? + })->count; + } 'comparing arrayref to pg array data does not blow up'; + is($count, 1, 'comparing arrayref to pg array data gives correct result'); }