rpuch commented on code in PR #3393:
URL: https://github.com/apache/ignite-3/pull/3393#discussion_r1519840660
##########
modules/table/src/integrationTest/java/org/apache/ignite/internal/threading/ItKvRecordApiThreadingTest.java:
##########
@@ -84,13 +104,24 @@ private static Table testTable() {
return CLUSTER.aliveNode().tables().table(TABLE_NAME);
}
+ @BeforeEach
+ void upsertRecord() {
+ KeyValueView<Integer, String> view = plainKeyValueView();
+
+ // #KEY is used by tests related to KV operations and queries.
+ view.put(null, KEY, "one");
+ }
+
@SuppressWarnings("rawtypes")
@CartesianTest
void keyValueViewFuturesCompleteInContinuationsPool(
@Enum KeyValueViewAsyncOperation operation,
@Enum KeyValueViewKind kind
) {
- assumeTrue(kind.supportsGetNullable() || !operation.isGetNullable());
+ assumeTrue(
+ kind.supportsGetNullable() || !operation.isGetNullable(),
+ "getNullable() is not supported for this view, so skipping the
test"
Review Comment:
Changed it a bit differently
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]