Giter VIP home page Giter VIP logo

Comments (4)

charmander avatar charmander commented on August 15, 2024 4

now() at time zone 'utc' converts the timestamptz to a plain timestamp (without time zone), which is then interpreted as being in the connection’s time zone whenever it’s cast back to timestamptz.

PS Because everywhere I saw was recommendation: Always use timestamp field with utc timezone or just some other timezone.

Well, that recommendation is backwards. You should almost always use timestamptz (which unambiguously represents a moment in time, the usual datetime complexities notwithstanding), and almost never timestamp (which doesn’t represent anything in particular without context and is easy to misuse by accident, as seen here).

from node-postgres.

Romick2005 avatar Romick2005 commented on August 15, 2024 1

Fixed by setting DB default timezone:
ALTER DATABASE [database_name] SET TIMEZONE='UTC';

from node-postgres.

charmander avatar charmander commented on August 15, 2024 1

You want just DEFAULT now(). now() is already a timestamptz.

from node-postgres.

Romick2005 avatar Romick2005 commented on August 15, 2024

But why now() that already contains timezone differs from now() at time zone 'utc'? I was assuming that there might be some database connection configuration like useUTC: true, but I didn't find any. So it seems like same query provides different result, depending on db client time zone even when there are no timestamp or time zone explicitly defined in the query.

PS Because everywhere I saw was recommendation: Always use timestamp field with utc timezone or just some other timezone.

from node-postgres.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.