Konstantin Orlov created IGNITE-21362:
-----------------------------------------
Summary: Just inserted row not found when using KV api
Key: IGNITE-21362
URL: https://issues.apache.org/jira/browse/IGNITE-21362
Project: Ignite
Issue Type: Bug
Reporter: Konstantin Orlov
Consider the following scenario:
{code:java}
sql("CREATE TABLE my (c1 INT, c2 INT, c3 INT, PRIMARY KEY (c2, c1))");
// mind the order of columns in PK definition
Tuple key = Tuple.create()
.set("c1", 1)
.set("c2", 2);
Tuple val = Tuple.create()
.set("c3", 3);
KeyValueView<Tuple, Tuple> kv = igniteNode
.tables()
.table("my")
.keyValueView();
kv.put(null, key, val);
Tuple result = kv.get(null, key); // <-- returns null here
{code}
Expected behaviour is to get result equals to {{val}} that we've just put to
the table, but {{kv.get()}} returns {{null}} in this case. If we change the
order of columns in PK definition to (c1, c2), then the test will pass.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)