Обсуждение: pgsql-server/src/backend/parser Tag: REL7_3_ST ...

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

pgsql-server/src/backend/parser Tag: REL7_3_ST ...

От
tgl@postgresql.org (Tom Lane)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@postgresql.org    03/05/03 20:04:10

Modified files:
    src/backend/parser: Tag: REL7_3_STABLE gram.y

Log message:
    When a TIMESTAMP, TIME, or INTERVAL precision is specified larger than our
    implementation limits, do not issue an ERROR; instead issue a NOTICE and use
    the max supported value.  Per pgsql-general discussion of 28-Apr, this is
    needed to allow easy porting from pre-7.3 releases where the limits were
    higher.

    Unrelated change in same area: accept GLOBAL TEMP/TEMPORARY as a synonym
    for TEMPORARY, as per pgsql-hackers discussion of 15-Apr.  We previously
    rejected it, but that was based on a misreading of the spec --- SQL92's
    GLOBAL temp tables are really closer to what we have than their LOCAL ones.