You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/12/21 15:42:59 UTC

[GitHub] [ignite-3] AMashenkov commented on a change in pull request #517: IGNITE-16121 Thin client: Implement KeyValueView

AMashenkov commented on a change in pull request #517:
URL: https://github.com/apache/ignite-3/pull/517#discussion_r773243277



##########
File path: modules/client/src/test/java/org/apache/ignite/client/ClientKeyValueBinaryViewTest.java
##########
@@ -89,6 +89,19 @@ public void testPutGet() {
         assertTupleEquals(val, resVal);
     }
 
+    @Test
+    public void testPutNull() {
+        Table table = defaultTable();
+        KeyValueView<Tuple, Tuple> kvView = table.keyValueView();
+
+        Tuple key = defaultTupleKey();
+
+        kvView.put(null, key, null);

Review comment:
       null-tuple is not allowed.




-- 
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: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org