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
overlay
for
dev=> \timing on Timing is on. dev=> SELECT overlay('123' placing '12345' from 1123456 for 1123456); ?column? ---------- 12312345 (1 row) Time: 47.893 ms dev=> SELECT overlay('123' placing '12345' from 1123456789 for 1123456789); ?column? ---------- 12312345 (1 row) Time: 10451.279 ms (00:10.451) dev=> SELECT overlay('123' placing '12345' from 1123456789 for 11234); ?column? ---------- 12312345 (1 row) Time: 10423.252 ms (00:10.423) dev=> SELECT overlay('123' placing '12345' from 11234 for 1123456789); ?column? ---------- 12312345 (1 row) Time: 4.833 ms
The text was updated successfully, but these errors were encountered:
OVERLAY
wangrunji0408
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: