changelog
This commit is contained in:
parent
40a2a7ceb7
commit
8ecc7728c7
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
type: add
|
||||
issue: 6325
|
||||
title: "Add support for including the partitioning column in search query joins."
|
|
@ -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];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue