-
-
Notifications
You must be signed in to change notification settings - Fork 98
Closed
Milestone
Description
ArcadeDB Server v26.4.1-SNAPSHOT (build 0db79073e18e153b71847e824493dc833a5698be/1772787794018/main)
Running on Mac OS X 15.7.3 - OpenJDK 64-Bit Server VM 25.0.2 (Homebrew)
Adding to a projection which aggregates but the type has no records results in an empty result.
Setup:
CREATE DOCUMENT TYPE doc;This works as expected, returning 1 record with the count 0:
SELECT count(*) FROM docThese return no records:
SELECT count(*), 2 FROM docSELECT count(*), $x FROM doc
LET $x = 2;Reactions are currently unavailable