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
If the MDL has a view with invalid SQL, the query based on it will fail even if it doesn't use the invalid view.
The problem is that wren_core will plan all the view SQL when analyzing the MDL. So, if any view is invalid, the request will always fail.
Expected behavior
Instead of planning all the views, it's better to plan the views when they're used.
The text was updated successfully, but these errors were encountered:
Description
If the MDL has a view with invalid SQL, the query based on it will fail even if it doesn't use the invalid view.
The problem is that
wren_core
will plan all the view SQL when analyzing the MDL. So, if any view is invalid, the request will always fail.Expected behavior
Instead of planning all the views, it's better to plan the views when they're used.
The text was updated successfully, but these errors were encountered: