google / zetasql

ZetaSQL - Analyzer Framework for SQL
Apache License 2.0
2.28k stars 214 forks source link

windowFrame is not optional in Java Client #85

Open JordyHeusdensDT opened 2 years ago

JordyHeusdensDT commented 2 years ago

windowFrame in ResolvedAnalyticFunctionCall can be NULL and should thus be optional.

Expected resulted: We can set windowFrame as NULL Current result: We get an error 'windowFrame needs to be set' when we create an ResolvedAnalyticFunctionCall object

See https://github.com/google/zetasql/pull/82 for fix.