6 use SQL::Abstract::Test import => [qw/is_same_sql_bind/];
9 for my $col_btype (0,1) {
11 my $sql_maker = SQL::Abstract->new(
13 name_sep => $q ? '.' : '',
14 $col_btype ? (bindtype => 'columns') : (),
17 my ($sql, @bind) = $sql_maker->select ('artist', '*', { arr1 => { -value => [1,2] }, arr2 => { '>', { -value => [3,4] } }, field => [5,6] } );
24 WHERE ${q}arr1${q} = ? AND
26 ( ${q}field${q} = ? OR ${q}field${q} = ? )