now() default values are all showing same timestamp

前端 未结 2 1451
天涯浪人
天涯浪人 2020-12-28 14:05

I have created my tables with a column (type: timestamp with timezone) and set its default value to now() (current_timestamp()).

I run a

2条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-28 14:13

    That is expected and documented behaviour:

    From the manual:

    Since these functions return the start time of the current transaction, their values do not change during the transaction. This is considered a feature: the intent is to allow a single transaction to have a consistent notion of the "current" time, so that multiple modifications within the same transaction bear the same time stamp.

    If you want something that changes each time you run a statement, you need to use statement_timestamp() or even clock_timestamp() (again see the description in the manual)

提交回复
热议问题