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
To lift the restriction in #14262:
Only during sqlparsing but not execution (eg '0x20'::int / source ingestion / pgwire text protocol)
'0x20'::int
With this we won't need to use the internal PostgreSQL function int8recv #13069:
int8recv
int8recv(decode(right(MD5('1234'), 16), 'hex'))
('0x' || right(MD5('1234'), 16))::bigint
The text was updated successfully, but these errors were encountered:
xiangjinwu
No branches or pull requests
To lift the restriction in #14262:
With this we won't need to use the internal PostgreSQL function
int8recv
#13069:int8recv(decode(right(MD5('1234'), 16), 'hex'))
('0x' || right(MD5('1234'), 16))::bigint
The text was updated successfully, but these errors were encountered: