-
Notifications
You must be signed in to change notification settings - Fork 1
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
Inserting doesn't support raw SQL #27
Comments
rintaun
changed the title
Don't use
Inserting doesn't support raw SQL
Dec 1, 2020
unnest
when inserting a single row
rintaun
pushed a commit
that referenced
this issue
Dec 1, 2020
🎉 This issue has been resolved in version 1.2.2 🎉 The release is available on: Your semantic-release bot 📦🚀 |
kodiakhq bot
added a commit
that referenced
this issue
Dec 14, 2020
⚠️ Dependabot is rebasing this PR⚠️ If you make any changes to it yourself then they will take precedence over the rebase. Bumps eslint-plugin-jsonc from 0.7.1 to 0.8.0. Release notes Sourced from eslint-plugin-jsonc's releases. v0.8.0 💥 Breaking Changes #26 Deprecate jsonc/auto-config. use jsonc/auto rule instead. ✨ Enhancements Core: #26 Supports for Vue custom block. New Rules: #26 Added jsonc/auto rule. #27 Added jsonc/key-name-casing rule. Commits f8bef3c 0.8.0 2cf2536 Supports for Vue custom block (#26) 9e11cd3 Add key-name-casing rule (#27) 40e6abd Update CI See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When inserting a single row, it's probably better to just use the values directly rather than using
unnest
... that would open up the opportunity to pass inSqlTokenType
values, whereasunnest
only supports primitive types.apparently LH uses that in a couple places, so dbds probably needs to support it
The text was updated successfully, but these errors were encountered: