We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is it possible to have multiline sql statements?
df = Repo.query([ SELECT (e.name, e.age) FROM MyTable WHERE e.data_source==dataSource ])
The text was updated successfully, but these errors were encountered:
that code throws ArgumentError like.
ArgumentError
ERROR: LoadError: ArgumentError: number of columns of each array must match (got (4, 2))
because you should follow the array syntax of julia,
julia> [ 1 1 1 1 1 1 ] ERROR: ArgumentError: argument count does not match specified shape (expected 8, got 6)
so you could make (2,3) array
Sorry, something went wrong.
Looks like its due to the julia autoformatter in VSCode. Will have to dig in to file an issue there.
No branches or pull requests
Is it possible to have multiline sql statements?
The text was updated successfully, but these errors were encountered: