Can only SKIP LOCKED if locking rows. Remove FOR SHARE as it isn't supported on < mysql 8
This commit is contained in:
parent
cca7953856
commit
4fa804e9a2
|
@ -413,12 +413,10 @@ sub Sql {
|
||||||
$sql .= ' LIMIT 0,'.$filter_expr->{limit};
|
$sql .= ' LIMIT 0,'.$filter_expr->{limit};
|
||||||
}
|
}
|
||||||
if ($$self{LockRows}) {
|
if ($$self{LockRows}) {
|
||||||
$sql .= ' FOR UPDATE OF E'
|
$sql .= ' FOR UPDATE'
|
||||||
} else {
|
if ($filter_expr->{skip_locked}) {
|
||||||
$sql .= ' FOR SHARE OF E'
|
$sql .= ' SKIP LOCKED';
|
||||||
}
|
}
|
||||||
if ($filter_expr->{skip_locked}) {
|
|
||||||
$sql .= ' SKIP LOCKED';
|
|
||||||
}
|
}
|
||||||
$self->{Sql} = $sql;
|
$self->{Sql} = $sql;
|
||||||
} # end if has Sql
|
} # end if has Sql
|
||||||
|
|
Loading…
Reference in New Issue