]> granicus.if.org Git - postgresql/commit
Fix handling of format string text characters in to_timestamp()/to_date()
authorAlexander Korotkov <akorotkov@postgresql.org>
Thu, 20 Sep 2018 12:48:04 +0000 (15:48 +0300)
committerAlexander Korotkov <akorotkov@postgresql.org>
Thu, 20 Sep 2018 12:48:04 +0000 (15:48 +0300)
commit09e99ce86e3dfb4716618b1dda4074b45ba56a09
treebf7a09a79b1a1076f657280e268e19662f5ee9c1
parent38763d67784c6563d08dbea5c9f913fa174779b8
Fix handling of format string text characters in to_timestamp()/to_date()

cf984672 introduced improvement of handling of spaces and separators in
to_timestamp()/to_date() functions.  In particular, now we're skipping spaces
both before and after fields.  That may cause format string text character to
consume part of field in the situations, when it didn't happen before cf984672.
This commit cause format string text character consume input string characters
only when since previous field (or string beginning) number of skipped input
string characters is not greater than number of corresponding format string
characters (that is we didn't skip any extra characters in input string).
src/backend/utils/adt/formatting.c
src/test/regress/expected/horology.out
src/test/regress/sql/horology.sql