-
Notifications
You must be signed in to change notification settings - Fork 44
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
Failed SQL generation when encountering invalid tokens for a table #25
Comments
I don't really get it. Do you mean that we should not raise the error even if it's an illegal usage? I think this action is by design... |
@cyliu0 This issue is quite old, I suppose I could convert it into a feature request. The current assumption is that all tables should have the same schema to run I think it helps to remove this assumption and support diverse table scheme, to make |
Oh... I get your idea now... But some of our users may still need this. I got a quick solution to your request. Add an option to ignore the error or skip the check. Will this meet your requirement? |
And we have a plan to improve this tool recently. You are welcomed to touch me on slack workspace |
I think to enable scan different table schema is not conflicting with scanning tables with the same scheme. The assumption is a special case of table schema, so may be it can be handled uniformly with different schema? |
Description:
If I have a table without
int
type columns, and the grammar uses_field_int
, it will throw an error and exit directly:Example:
Expected behavior:
It should roll back to the rule expansion to choose another one, then proceed to normal generation.
Diagnosis:
Please check for the root cause
The text was updated successfully, but these errors were encountered: