agura commented on a change in pull request #510:
URL: https://github.com/apache/ignite-3/pull/510#discussion_r786227662
##########
File path:
modules/table/src/test/java/org/apache/ignite/internal/table/KeyValueViewOperationsSimpleSchemaTest.java
##########
@@ -84,7 +86,7 @@ public void put() {
assertEquals(22L, tbl.get(null, 1L));
// Remove KV pair.
- tbl.put(null, 1L, null);
+ tbl.remove(null, 1L);
Review comment:
Nevertheless, what is behavior of `put(tx, key, null)` invocation? There
are at least two cases: value is a nullable column and values is a not null
column. Method's contract doesn't throw any exception and doesn't document how
it behaves.
--
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]