alexc-jeromes

Results 5 comments of alexc-jeromes

@mixaster do you have indexes on that table? Curious to see if/how it changes things. Our tables were 5M or so.

Developing new addons (we have 40+ custom), basically. We build them into the `addons/` dir, then they are committed into a Gitlab repo, which is connected to a Satis Server...

This is working in production fairly well. ```php protected function compileTableExpression($sql, $constraint, $query) { if ($query->limit == 1 && is_null($query->offset)) { return "select * from ({$sql}) where rownum {$constraint}"; }...

Welcome! We literally just override this function. It would be worth testing this out though before a PR, as although it works for us, it may encounter other scenarios where...

@mixaster Yeh i suspected that might be the case. We're using it with quite simple queries and the solution is only needed for record browsing without complexity, so it will...