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
Go
go version go1.17.2 linux/amd64
GoFrame
github.com/gogf/gf v1.16.6
是
-- gdb 生成出来的sql NULL 被转义了,导致查询认为 NULL 是一个字段,从而导致 sql 出错 SELECT a, COUNT(*) FROM bar GROUP BY a ORDER BY `NULL`;
期待 NULL 值不被转义
SELECT a, COUNT(*) FROM bar GROUP BY a ORDER BY NULL;
#1499
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. What version of
Go
and system type/arch are you using?go version go1.17.2 linux/amd64
2. What version of
GoFrame
are you using?github.com/gogf/gf v1.16.6
3. Can this issue be re-produced with the latest release?
是
4. What did you do?
5. What did you expect to see?
期待 NULL 值不被转义
6. What did you see instead?
#1499
The text was updated successfully, but these errors were encountered: