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 { } else {
// fixme reverse // fixme reverse
Integer nextPartitionId = (Integer) nextRowAsArray[0]; Integer nextPartitionId = (Integer) nextRowAsArray[0];
Long nextResourceId = (Long) nextRowAsArray[1]; myNext = (Long) nextRowAsArray[1];
myNext = nextResourceId;
} }
} }
} }

View File

@ -39,7 +39,7 @@ public class PartitionSettings {
/** /**
* Is the table partition column (usually PARTITION_ID) * 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. * Affects sql joins, sql in() expressions, etc.
*/ */
public boolean isPartitionIdsInPrimaryKeys() { public boolean isPartitionIdsInPrimaryKeys() {