Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
8e8bb8f
WIP
anton-vinogradov Apr 30, 2026
d7c9348
WIP
anton-vinogradov May 4, 2026
bac9529
WIP
anton-vinogradov May 4, 2026
2793feb
WIP
anton-vinogradov May 4, 2026
6d317df
WIP
anton-vinogradov May 4, 2026
802f7e1
WIP
anton-vinogradov May 4, 2026
7c5d2e1
WIP
anton-vinogradov May 4, 2026
05253c6
WIP
anton-vinogradov May 5, 2026
b2fe338
Merge remote-tracking branch 'origin/master' into ignite-28520
anton-vinogradov May 7, 2026
63110cd
WIP
anton-vinogradov May 7, 2026
880c9b7
WIP
anton-vinogradov May 7, 2026
e65ee21
WIP
anton-vinogradov May 7, 2026
01892b9
WIP
anton-vinogradov May 7, 2026
0774499
WIP
anton-vinogradov May 8, 2026
a87dcde
WIP
anton-vinogradov May 8, 2026
ee4c879
WIP
anton-vinogradov May 8, 2026
53036be
WIP
anton-vinogradov May 8, 2026
76802b7
WIP
anton-vinogradov May 8, 2026
854aeb8
WIP
anton-vinogradov May 8, 2026
049abc9
WIP
anton-vinogradov May 8, 2026
b95ccef
WIP
anton-vinogradov May 10, 2026
0c02ce6
WIP
anton-vinogradov May 10, 2026
0f87076
WIP
anton-vinogradov May 12, 2026
7aaa915
WIP
anton-vinogradov May 12, 2026
46df8f3
Merge remote-tracking branch 'origin/master' into ignite-28520
anton-vinogradov May 12, 2026
5737bcd
WIP
anton-vinogradov May 13, 2026
b59531f
WIP
anton-vinogradov May 14, 2026
95f9b90
WIP
anton-vinogradov May 14, 2026
9ef8a15
Merge remote-tracking branch 'origin/master' into ignite-28520
anton-vinogradov May 14, 2026
1b2d240
WIP
anton-vinogradov May 14, 2026
9f4b276
WIP
anton-vinogradov May 14, 2026
aecd605
Merge remote-tracking branch 'origin/master' into ignite-28520
anton-vinogradov May 18, 2026
1f7b0fc
WIP
anton-vinogradov May 18, 2026
bd9c1bc
WIP
anton-vinogradov May 18, 2026
95d6445
WIP
anton-vinogradov May 19, 2026
4e392b6
WIP
anton-vinogradov May 19, 2026
faa5d29
WIP
anton-vinogradov May 19, 2026
9b04411
WIP
anton-vinogradov May 19, 2026
4de48b4
Merge remote-tracking branch 'origin/master' into ignite-28520
anton-vinogradov May 19, 2026
0ec4e94
WIP
anton-vinogradov May 19, 2026
dfd0812
Merge remote-tracking branch 'origin/master' into ignite-28520
anton-vinogradov May 20, 2026
2948fb3
WIP
anton-vinogradov May 20, 2026
104d4c2
WIP
anton-vinogradov May 20, 2026
3156323
WIP
anton-vinogradov May 20, 2026
9a10693
WIP
anton-vinogradov May 20, 2026
25f391b
WIP
anton-vinogradov May 20, 2026
5eca804
WIP
anton-vinogradov May 21, 2026
1915b2d
WIP
anton-vinogradov May 21, 2026
7acf8c2
WIP
anton-vinogradov May 21, 2026
2b5417c
WIP
anton-vinogradov May 21, 2026
3b547e8
WIP
anton-vinogradov May 21, 2026
6da0195
WIP
anton-vinogradov May 21, 2026
d2eea1f
WIP
anton-vinogradov May 21, 2026
e98f17d
WIP
anton-vinogradov May 22, 2026
4a5f0c0
WIP
anton-vinogradov May 22, 2026
c972d42
Merge remote-tracking branch 'origin/master' into ignite-28520
anton-vinogradov May 22, 2026
3c10d5a
WIP
anton-vinogradov May 22, 2026
e5e8e67
WIP
anton-vinogradov May 22, 2026
a6ecdbe
WIP
anton-vinogradov May 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.apache.ignite.internal.processors.cache.KeyCacheObject;
import org.apache.ignite.internal.processors.cache.version.GridCacheVersion;
import org.apache.ignite.internal.processors.query.calcite.exec.ExecutionContext;
import org.apache.ignite.plugin.extensions.communication.CacheIdAware;

/**
* Class to pass to remote nodes transaction changes.
Expand All @@ -38,7 +39,7 @@
* @see ExecutionContext#transactionChanges(int, int[], Function, Comparator)
* @see QueryStartRequest#queryTransactionEntries()
*/
public class QueryTxEntry implements CalciteContextMarshallableMessage {
public class QueryTxEntry implements CalciteContextMarshallableMessage, CacheIdAware {
/** Cache id. */
@Order(0)
int cacheId;
Expand Down Expand Up @@ -75,8 +76,8 @@
this.ver = ver;
}

/** @return Cache id. */
public int cacheId() {
/** {@inheritDoc} */
@Override public int cacheId() {
return cacheId;
}

Expand All @@ -96,13 +97,7 @@
}

/** {@inheritDoc} */
@Override public void prepareMarshal(GridCacheSharedContext<?, ?> ctx) throws IgniteCheckedException {

Check failure on line 100 in modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/message/QueryTxEntry.java

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Add a nested comment explaining why this method is empty, throw an UnsupportedOperationException or complete the implementation.

See more on https://sonarcloud.io/project/issues?id=apache_ignite&issues=AZ30CgSw7CXUX8I4RO9B&open=AZ30CgSw7CXUX8I4RO9B&pullRequest=13095
CacheObjectContext coctx = ctx.cacheContext(cacheId).cacheObjectContext();

key.prepareMarshal(coctx);

if (val != null)
val.prepareMarshal(coctx);
}

/** {@inheritDoc} */
Expand Down
Loading
Loading