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
In #90 there is a feature for full PL/SQL support. We would like to address at least small bug. In this query
select value/1000 from v$sesstat se,v$statname sn where se.STATISTIC# = sn.STATISTIC# and sn.name = 'CPU used by this session' and se.SID=ss.SID
You can se v$abc identificators. They are valid, but they are marked as error by coderay. Is there anything we can do with this?
v$abc
The text was updated successfully, but these errors were encountered:
Do you know whether $ is allowed in all SQL dialects?
Sorry, something went wrong.
It is allowed in postgreSQL and mySQL, just tried to create table with such identificators.
Thanks! Can you share the code here? I would add it as a test case…
@korny if I add tests for this will you consider merging the PR? Where would I go about adding tests?
add changelog for #164
3e4bb6a
I added a test case in https://github.com/rubychan/coderay-scanner-tests/blob/master/sql/dollar-signs.in.sql.
korny
Successfully merging a pull request may close this issue.
In #90 there is a feature for full PL/SQL support.
We would like to address at least small bug.
In this query
You can se
v$abc
identificators. They are valid, but they are marked as error by coderay. Is there anything we can do with this?The text was updated successfully, but these errors were encountered: