* Added a test for arrayref bind values in search to match PostgreSQL array type...
[dbsrgits/DBIx-Class.git] / t / 95sql_maker.t
CommitLineData
e5938571 1use strict;
2use warnings;
3
4use Test::More;
5use SQL::Abstract::Test import => ['is_same_sql_bind'];
6
7
8BEGIN {
9 eval "use DBD::SQLite";
10 plan $@
11 ? ( skip_all => 'needs DBD::SQLite for testing' )
12 : ( tests => 3 );
13}
14
15use lib qw(t/lib);
16
17use_ok('DBICTest');
18
19my $schema = DBICTest->init_schema();
20
21my $sql_maker = $schema->storage->sql_maker;
22
23
89479564 24SKIP: {
25 skip "SQL::Abstract < 1.50 does not pass through arrayrefs", 2 if $SQL::Abstract::VERSION < 1.50;
26
27 my ($sql, @bind) = $sql_maker->insert(
28 'lottery',
29 {
30 'day' => '2008-11-16',
31 'numbers' => [13, 21, 34, 55, 89]
32 }
33 );
34
35 is_same_sql_bind(
36 $sql, \@bind,
37 q/INSERT INTO lottery (day, numbers) VALUES (?, ?)/,
38 [ ['day' => '2008-11-16'], ['numbers' => [13, 21, 34, 55, 89]] ],
39 'sql_maker passes arrayrefs in insert'
40 );
41
42
43 ($sql, @bind) = $sql_maker->update(
44 'lottery',
45 {
46 'day' => '2008-11-16',
47 'numbers' => [13, 21, 34, 55, 89]
48 }
49 );
50
51 is_same_sql_bind(
52 $sql, \@bind,
53 q/UPDATE lottery SET day = ?, numbers = ?/,
54 [ ['day' => '2008-11-16'], ['numbers' => [13, 21, 34, 55, 89]] ],
55 'sql_maker passes arrayrefs in update'
56 );
57}