Daisuke Fujimura
Daisuke Fujimura
Added a method which return the view is populated or not. `REFRESH MATERIALIZED VIEW CONCURRENTLY` doesn't work for a view which is not populated, even it has unique index. This...
Hello, I'd like to do something with \BS, but `getInputChar` ignores non-printable characters. How can I do it? Should I build a custom function which acts like `getInputChar` returns non-printable...
``` $ git gsub "([[:^alpha:]]" "OK" README.md panic: regexp: Compile(`([[:^alpha:]]`): error parsing regexp: missing closing ): `([[:^alpha:]]` goroutine 1 [running]: regexp.MustCompile({0x16b64ef10, 0xd}) /opt/homebrew/Cellar/go/1.20.2/libexec/src/regexp/regexp.go:319 +0xac main.addSub(0x1400000e048, {0x16b64ef10?, 0x3?}, {0x16b64ef1e, 0x2}, 0x1048d46e0)...
git-gsub is using regexp package for replacing string, which depends on re2 and re2 doesn't support submatch. Replacing with submatch is undocumented(yet partially test) feature, but I hope this to...
I'm using this for my company. Thanks for useful library! Currently we want to invalidate cache of sprite by adding query parameter to the url of sprite image. But, there...