> In ltree, when using adjacent asterisks with braces, e.g. "*{2}.*{3}", > properly interpret that as "*{5}" (Nikita Glukhov)
I think that should say ".*" not "*", as in: > In ltree, when using adjacent asterisks with braces, e.g. ".*{2}.*{3}", > properly interpret that as "*{5}" (Nikita Glukhov) The existing text clearly came from the commit message, which (based on its regression tests) I think was the source of the missing dot. commit 9950c8aadf0edd31baec74a729d47d94af636c06 Author: Tom Lane <t...@sss.pgh.pa.us> Date: Sat Mar 28 18:31:05 2020 -0400 Fix lquery's behavior for consecutive '*' items. Something like "*{2}.*{3}" should presumably mean the same as "*{5}", but it didn't. Improve that. ... -- Justin