You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the window-defn page in sqlite.org
All window definitions in sqlite should have a brace around them
but the generated sql for sqlite doesn't do that.
Steps to Reproduce
Use sea_query::query::SelectStatement::window function and build the sql query for sqlite
Expected Behavior
FROM"image_metadata"AS"meta"INNER JOIN"image_core_metadata"AS"core_meta"ON"meta"."image"="core_meta"."image"WHERE"meta"."dupe"IS NOT NULL
WINDOW "d_time"AS (PARTITION BY "meta"."dupe"ORDER BY"core_meta"."timestamp"ASC)
Actual Behavior
FROM"image_metadata"AS"meta"INNER JOIN"image_core_metadata"AS"core_meta"ON"meta"."image"="core_meta"."image"WHERE"meta"."dupe"IS NOT NULL
WINDOW "d_time"AS PARTITION BY "meta"."dupe"ORDER BY"core_meta"."timestamp"ASC
Reproduces How Often
Always reproduced
Versions
Using sea-query 0.30.7
Additional Information
I'll provide a minimal reproducible example soon.
The text was updated successfully, but these errors were encountered:
Description
According to the window-defn page in sqlite.org
All window definitions in sqlite should have a brace around them
but the generated sql for sqlite doesn't do that.
Steps to Reproduce
Use
sea_query::query::SelectStatement::window
function and build the sql query for sqliteExpected Behavior
Actual Behavior
Reproduces How Often
Always reproduced
Versions
Using
sea-query 0.30.7
Additional Information
I'll provide a minimal reproducible example soon.
The text was updated successfully, but these errors were encountered: