Fix missing ;
This commit is contained in:
parent
f683557b0e
commit
28d5614da0
|
@ -413,7 +413,7 @@ sub Sql {
|
||||||
$sql .= ' LIMIT 0,'.$filter_expr->{limit};
|
$sql .= ' LIMIT 0,'.$filter_expr->{limit};
|
||||||
}
|
}
|
||||||
if ($$self{LockRows}) {
|
if ($$self{LockRows}) {
|
||||||
$sql .= ' FOR UPDATE'
|
$sql .= ' FOR UPDATE';
|
||||||
if ($filter_expr->{skip_locked}) {
|
if ($filter_expr->{skip_locked}) {
|
||||||
$sql .= ' SKIP LOCKED';
|
$sql .= ' SKIP LOCKED';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue