Code Monkey home page Code Monkey logo

Comments (4)

joevandyk avatar joevandyk commented on September 7, 2024
tanga_dev=# prepare test  as select 'now'::timestamptz;
PREPARE
tanga_dev=# execute test;
          timestamptz
-------------------------------
 2015-01-13 09:13:05.742936-08
(1 row)

tanga_dev=# execute test;
          timestamptz
-------------------------------
 2015-01-13 09:13:05.742936-08
(1 row)

Seems like there would be a problem if using prepared statements.

from que.

joevandyk avatar joevandyk commented on September 7, 2024

Although:

tanga_dev=# prepare test  as select 'now()'::timestamptz;
PREPARE
tanga_dev=# execute test;
          timestamptz
-------------------------------
 2015-01-13 09:20:51.518569-08
(1 row)

tanga_dev=# execute test;
          timestamptz
-------------------------------
 2015-01-13 09:20:51.518569-08
(1 row)

I don't know much about prepared statements yet.

[edit]

I see, removing the quotes is the trick:

tanga_dev=# prepare test  as select now()::timestamptz;
PREPARE
tanga_dev=# execute test;
              now
-------------------------------
 2015-01-13 09:23:24.448843-08
(1 row)

tanga_dev=# execute test;
              now
-------------------------------
 2015-01-13 09:23:25.384618-08
(1 row)

from que.

johto avatar johto commented on September 7, 2024

Yeah, the difference is that one is a function call evaluated during runtime, and the other one is a literal evaluated during prepare. If the problem can't be reproduced in Ruby, I'm guessing it doesn't do server-side prepared statements.

The cast to timestamptz for now() is unnecessary, since it's guaranteed to return a timestamptz.

from que.

chanks avatar chanks commented on September 7, 2024

Going through old issues and can't replicate this one. I suppose the switch to now() fixed it. Thanks, though!

from que.

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.