Denis Magda created IGNITE-6092:
-----------------------------------
Summary: Bulk Inserts are not Supported
Key: IGNITE-6092
URL:
https://issues.apache.org/jira/browse/IGNITE-6092 Project: Ignite
Issue Type: New Feature
Reporter: Denis Magda
Assignee: Vladimir Ozerov
Priority: Critical
Presently the bulk inserts like these are not supported by Ignite's SQL engine:
{code}
INSERT INTO City (id, name)
VALUES (1, 'Forest Hill'),
(2, "Denver"),
(3, "St. Petersburg")
INSERT INTO Person (id, name, city_id)
VALUES (1, 'John Doe', 3),
(2, "Jane Roe", 2),
(3, "Mary Major", 1),
(4, "Richard Miles", 2)
{code}
Let's plan to support them for the nearest release. I've used DBeaver tool to validate the statements above:
https://apacheignite-tools.readme.io/docs/dbeaver--
This message was sent by Atlassian JIRA
(v6.4.14#64029)