-
Notifications
You must be signed in to change notification settings - Fork 3
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
Invalid SQL Parsing #98
Labels
bug
Unwanted / harmful behavior
Comments
The root cause of the error seems to be the regular expression that checks if the query is a local csv import: https://github.com/exasol/exasol-driver-go/blob/main/internal/utils/helper.go#L16 |
kaklakariada
added a commit
that referenced
this issue
Oct 20, 2023
kaklakariada
added a commit
that referenced
this issue
Oct 23, 2023
@cyrixsimon @ssteinhauser thank you for reporting this bug! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When executing an insert statement that contains 'import into ' as a value the following error is raised.
E-EGOD-27: could not parse import query
Example statement.
insert into table1 values ('import into {{dest.schema}}.{{dest.table}} ) from local csv file ''{{file.path}}'' ');
The text was updated successfully, but these errors were encountered: