Skip to content

SQL: accessing internal properties in a map #3571

@gramian

Description

@gramian

ArcadeDB Server v26.3.1-SNAPSHOT (build 687b972d1f73fa0a07e8c33da22b686f1457b5f6/1772565442616/main)

Running on Mac OS X 15.7.3 - OpenJDK 64-Bit Server VM 25.0.2 (Homebrew)

Accessing properties with an @ prefix (internal properties) in a map (object) does not work as expected.

Setup:

CREATE VERTEX TYPE V;
CREATE EDGE TYPE E;
INSERT INTO V;
CREATE EDGE E FROM (SELECT FROM V) TO (SELECT FROM V);

The following queries do not work as expected:

SELECT inE().`@rid` FROM V -- Returns: [null] instead of an array of RIDs
SELECT inE()[0].`@rid` FROM V -- Returns: null instead of an RID

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions