Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GIVEN is not greedy enough #49

Open
zane opened this issue Oct 14, 2022 · 0 comments
Open

GIVEN is not greedy enough #49

zane opened this issue Oct 14, 2022 · 0 comments
Labels
bug Something isn't working permissive

Comments

@zane
Copy link
Contributor

zane commented Oct 14, 2022

Overview

GIVEN expressions are not greedy enough. model GIVEN x, y is interpreted as (model GIVEN x), y. Should be (model GIVEN x, y).

Reproduction steps

Execute a query that computes the probability of an event given two variables using commas to separate the variables. For example (column / variable names can be changed):

SELECT
  PROBABILITY OF x 
  UNDER model 
  GIVEN y, z AS prob
FROM data

Expected results

A table with one column, prob, is returned. In other words, the query is interpreted as follows:

SELECT
  (PROBABILITY OF x 
  UNDER model 
  GIVEN y, z AS prob)
FROM data

Actual results

A table with two columns are returned, one with the result of PROBABILITY OF x UNDER model GIVEN y, and the column data.z renamed to prob. In other words, the query is interpreted as follows:

SELECT
  (PROBABILITY OF x 
  UNDER model 
  GIVEN y), (z AS prob)
FROM data
@zane zane added bug Something isn't working permissive labels Oct 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working permissive
Projects
None yet
Development

No branches or pull requests

1 participant