Conversation
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
July 29, 2026 00:28
9b6bd68 to
4033598
Compare
Koc
marked this pull request as ready for review
July 29, 2026 18:08
enhanceTables for a multiple tables at once to get rid of N+1 queries
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
July 29, 2026 21:57
29cbb47 to
44e315b
Compare
enjeck
reviewed
Aug 7, 2026
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
August 9, 2026 14:30
2686136 to
e9b83fb
Compare
samin-z
self-requested a review
August 10, 2026 15:48
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
August 24, 2026 00:51
e9b83fb to
b286459
Compare
enjeck
reviewed
Aug 25, 2026
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
August 27, 2026 23:58
306f894 to
f5cb044
Compare
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
August 30, 2026 14:27
a7383f5 to
c9e19d1
Compare
Contributor
Author
enjeck
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 4, 2026 04:44
263e65c to
ba01275
Compare
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 4, 2026 08:27
ba01275 to
ecef56b
Compare
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
September 12, 2026 15:42
7243f39 to
e845c15
Compare
blizzz
requested changes
Sep 16, 2026
blizzz
left a comment
Member
There was a problem hiding this comment.
Some questions, and view ordering got lost it seems
| $qb->select('v.*', 't.ownership') | ||
| ->from($this->table, 'v') | ||
| ->innerJoin('v', 'tables_tables', 't', 't.id = v.table_id') | ||
| ->where($qb->expr()->in('v.table_id', $qb->createNamedParameter($tableIdsChunk, IQueryBuilder::PARAM_INT_ARRAY))); |
Member
There was a problem hiding this comment.
The order by statements are missing:
$qb->addOrderBy('v.sidebar_order', 'ASC');
$qb->addOrderBy('v.id', 'ASC');
| * @param array<int, int|null> $tableRowsCounts | ||
| */ | ||
| private function enhanceViews(array $views, string $userId, array $tableRowsCounts = []): void { | ||
| if (empty($views)) { |
Member
There was a problem hiding this comment.
this does not have the isFederated guard anymore. Intentional? It puts the responsibility to check about it to the caller, like in enhanceView() currently.
|
|
||
| try { | ||
| $excluded = !$this->circleHelper->isCirclesEnabled() ? [ShareReceiverType::CIRCLE] : []; | ||
| $shares = $this->mapper->findAllSharesForNodes('table', $tableIds, $userId, $excluded); |
Member
There was a problem hiding this comment.
Does this still find all shares for a table manager, i.e. indirect shares?
| } catch (PermissionError) { | ||
| $table->setRowsCount(0); | ||
| // if the table is shared with me, there are no other shares | ||
| // will avoid showing the shared icon in the FE nav |
Member
There was a problem hiding this comment.
is this intentional? Sounds strange?
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 16, 2026 22:53
e845c15 to
ecef56b
Compare
…N+1 queries Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
…N+1 queries (code review) Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
…N+1 queries (code review) Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
…N+1 queries (code review) Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 16, 2026 22:54
ecef56b to
abc0f82
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In our organization we operate a large amount of tables/views, so there are performance bottleneck here:
TableService::enhanceTable()in a loop with a single call of theenhanceTables()ViewService::enhanceView()in a loop with a single call of theenhanceViews()UserHelperfor row/column counts, share counts and owner display names.🖼️ Screenshots
Here profiler results for
GET /apps/tables/tableendpoint for 18 tables and 9 views:🏁 Checklist
/backport to stableX.X🤖 AI (if applicable)