Обсуждение: pgsql: Modify the new to_timestamp implementation so that

Поиск
Список
Период
Сортировка

pgsql: Modify the new to_timestamp implementation so that

От
heikki@postgresql.org (Heikki Linnakangas)
Дата:
Log Message:
-----------
Modify the new to_timestamp implementation so that end-of-format-string
is treated like a non-digit separator. This fixes the inconsistency in
examples like:

to_timestamp('2008-01-2', 'YYYY-MM-DD') -- didn't work

and

to_timestamp('2008-1-02', 'YYYY-MM-DD') -- did work

Modified Files:
--------------
    pgsql/src/backend/utils/adt:
        formatting.c (r1.150 -> r1.151)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/formatting.c?r1=1.150&r2=1.151)