You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inserting into a bucket via a sub-query reports inserted records but they don't exists, ie:
CREATE DOCUMENT TYPE src;
INSERT INTO src SET name ='Hi';
CREATE DOCUMENT TYPE doc BUCKET doc;
INSERT INTO BUCKET:doc FROM (SELECT name FROM src); -- This fails silentlySELECTFROM BUCKET:doc; -- This returns 0 records
This (without BUCKET) works as expected:
CREATE DOCUMENT TYPE src;
INSERT INTO src SET name ='Hi';
CREATE DOCUMENT TYPE doc BUCKET doc;
INSERT INTO doc FROM (SELECT name FROM src);
SELECTFROM doc; -- This returns 1 record
This reports: Error on command execution (PostCommandHandler): Cannot update a record in a custom bucket:
CREATE DOCUMENT TYPE doc BUCKET doc, src;
INSERT INTO BUCKET:src SET name ='Hi';
INSERT INTO BUCKET:doc FROM (SELECT name FROM BUCKET:src);
The text was updated successfully, but these errors were encountered:
ArcadeDB Version 25.1.1
Inserting into a bucket via a sub-query reports inserted records but they don't exists, ie:
This (without BUCKET) works as expected:
This reports:
Error on command execution (PostCommandHandler): Cannot update a record in a custom bucket
:The text was updated successfully, but these errors were encountered: