The documentation page contains an example:
WITH (satellites_model GIVEN Users = "Military") AS military_model:
SELECT PROBABILITY OF Apogee_km UNDER military_model
However in the current implementation (modulo some commonsense differences in naming) this fails:
IQL> with (model given Users = "Military") as military_model: select probability of Apogee under military_model
Parse error at line 1, column 107:
with (model given Users = "Military") as military_model: select probability of Apogee under military_model
^
Expected one of:
#"\s+"
,
The documentation page contains an example:
However in the current implementation (modulo some commonsense differences in naming) this fails: