-
Notifications
You must be signed in to change notification settings - Fork 6
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
Introduce SQL dialects #71
Conversation
Needed to ignore start of comments when inside a literal
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #71 +/- ##
==========================================
+ Coverage 97.57% 98.53% +0.96%
==========================================
Files 44 47 +3
Lines 2309 3830 +1521
Branches 261 323 +62
==========================================
+ Hits 2253 3774 +1521
Misses 56 56 ☔ View full report in Codecov by Sentry. |
We just want to know where the content starts and ends As postgres has tagged literals
If we have a single character, the start and end should be the same, these represent the indices.
Revisiting another approach that doesn't require parsing
We took a different approach, avoiding complicated parsing. |
In order to understand escaping correctly per database dialect.