We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccdc561 commit cae68ffCopy full SHA for cae68ff
lib/Data/ObjectDriver/SQL.pm
@@ -11,7 +11,7 @@ __PACKAGE__->mk_accessors(qw(
11
select distinct select_map select_map_reverse
12
from joins where bind limit offset group order
13
having where_values column_mutator index_hint
14
- comment as aggrigated
+ comment as is_bind_contatinated
15
));
16
17
sub new {
@@ -139,9 +139,9 @@ sub as_sql {
139
$sql .= "-- $1" if $1;
140
}
141
142
- unless ($stmt->aggrigated) {
+ unless ($stmt->is_bind_contatinated) {
143
@{ $stmt->{bind} } = (@bind_for_select, @bind_for_from, @{ $stmt->{bind} });
144
- $stmt->aggrigated(1);
+ $stmt->is_bind_contatinated(1);
145
146
147
return $sql;
0 commit comments