changelog

This commit is contained in:
Michael Buckley 2024-09-27 17:08:37 -04:00
parent 40a2a7ceb7
commit 8ecc7728c7
3 changed files with 6 additions and 3 deletions

View File

@ -0,0 +1,4 @@
---
type: add
issue: 6325
title: "Add support for including the partitioning column in search query joins."

View File

@ -157,8 +157,7 @@ public class SearchQueryExecutor implements ISearchQueryExecutor {
} else {
// fixme reverse
Integer nextPartitionId = (Integer) nextRowAsArray[0];
Long nextResourceId = (Long) nextRowAsArray[1];
myNext = nextResourceId;
myNext = (Long) nextRowAsArray[1];
}
}
}

View File

@ -39,7 +39,7 @@ public class PartitionSettings {
/**
* Is the table partition column (usually PARTITION_ID)
* participating and primary and foreign keys.
* participating in primary and foreign keys.
* Affects sql joins, sql in() expressions, etc.
*/
public boolean isPartitionIdsInPrimaryKeys() {