-
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
fix: use upstream node-sql-parser package #70
Conversation
Published beta package version: |
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: @lucianbuzzo/[email protected] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@LucianBuzzo I fixed some ts & linting issue but looks like its failing in integration tests
bb8e3f0
to
73597a1
Compare
@SarjuHansaliya Oh I was literally working on this right now 😂 |
I'll take it from here |
This changes Yates to use the original upstream node-sql-parser package. The only reason Yates uses my fork is because at the time the `exprToSQL` method I contributed was not available in the general release. Fast-forward to 10 months later and my fork is now 499 commits behind master XD The only real difference that has to be made is the way that `$n` parameters are represented in the AST, but this is a simple change to make. Signed-off-by: Lucian Buzzo <[email protected]>
Signed-off-by: Lucian Buzzo <[email protected]>
Signed-off-by: Lucian Buzzo <[email protected]>
73597a1
to
91779eb
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
This changes Yates to use the original upstream node-sql-parser package. The only reason Yates uses my fork is because at the time the
exprToSQL
method I contributed was not available in the general release. Fast-forward to 10 months later and my fork is now 499 commits behind master XDThe only real difference that has to be made is the way that
$n
parameters are represented in the AST, but this is a simple change to make.