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
If use string, it's correct
User.pluck_h('id AS d') # => [{"d"=>2}, {"d"=>1}]
But if use symbol, the output is wrong
User.pluck_h(:'id AS d') # => [{"id AS d"=>2}, {"id AS d"=>1}]
The text was updated successfully, but these errors were encountered:
When a Symbol with an "as" Alias is present, handle it correctly
c513c6f
Fixes girishso#20 Extract separation logic into a new function and make the regex into a constant
No branches or pull requests
If use string, it's correct
But if use symbol, the output is wrong
The text was updated successfully, but these errors were encountered: