]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix length checking for Unicode identifiers containing escapes (U&"...").
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 13 Feb 2014 19:24:55 +0000 (14:24 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 13 Feb 2014 19:24:55 +0000 (14:24 -0500)
commit148052d2593becc429425050c8259b05afea0f91
tree1bb8b8ad0413f0f69296637669de44cc6070aa70
parent16b06c994f5d7d471f7284afdcd02c0a9ac93be1
Fix length checking for Unicode identifiers containing escapes (U&"...").

We used the length of the input string, not the de-escaped string, as
the trigger for NAMEDATALEN truncation.  AFAICS this would only result
in sometimes printing a phony truncation warning; but it's just luck
that there was no worse problem, since we were violating the API spec
for truncate_identifier().  Per bug #9204 from Joshua Yanovski.

This has been wrong since the Unicode-identifier support was added,
so back-patch to all supported branches.
src/backend/parser/scan.l