-
-
Notifications
You must be signed in to change notification settings - Fork 91
Closed
Milestone
Description
ArcadeDB Version: v23.1.2 (build 9dbe3ce/1675373316135/main)
JDK Version: openjdk 11.0.18 2023-01-17
OS: MacOS 12.6
Arguments to the map function (and maybe others) result in null when properties from schema:types are passed. It seems either argument in the example below (name and custom.label) seem to be null to the map function.
Expected behavior
{ "doc": "Document" }
Actual behavior
null
Steps to reproduce
CREATE DOCUMENT TYPE doc;
ALTER TYPE doc CUSTOM label = 'Document';
SELECT map(name,custom.label) FROM schema:types;
The following works as epected:
SELECT name, custom.label FROM schema:types;
Reactions are currently unavailable