Skip to content

Commit cae68ff

Browse files
committed
rename bind concatinated flat
1 parent ccdc561 commit cae68ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Data/ObjectDriver/SQL.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ __PACKAGE__->mk_accessors(qw(
1111
select distinct select_map select_map_reverse
1212
from joins where bind limit offset group order
1313
having where_values column_mutator index_hint
14-
comment as aggrigated
14+
comment as is_bind_contatinated
1515
));
1616

1717
sub new {
@@ -139,9 +139,9 @@ sub as_sql {
139139
$sql .= "-- $1" if $1;
140140
}
141141

142-
unless ($stmt->aggrigated) {
142+
unless ($stmt->is_bind_contatinated) {
143143
@{ $stmt->{bind} } = (@bind_for_select, @bind_for_from, @{ $stmt->{bind} });
144-
$stmt->aggrigated(1);
144+
$stmt->is_bind_contatinated(1);
145145
}
146146

147147
return $sql;

0 commit comments

Comments
 (0)