Hi,
My POJO has composite primary key.
e.g.
public class TriggerDefinition {
@Id
private TriggerDefinitionKey triggerDefinitionKey;
}
public TriggerDefinitionKey(Long triggerId, Long biEventId) {
this.triggerId = triggerId;
this.biEventId = biEventId;
}
My question is - how can I define the _key when inserting with SQL query? I
try the following:
INSERT INTO TriggerDefinition (_KEY,TriggerId,BiEventId) values
(11,33,11,33); I did not find anything related to this.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/