1. 17 9月, 2005 8 次提交
  2. 16 9月, 2005 9 次提交
  3. 15 9月, 2005 3 次提交
  4. 14 9月, 2005 2 次提交
  5. 13 9月, 2005 9 次提交
  6. 12 9月, 2005 4 次提交
  7. 11 9月, 2005 2 次提交
    • T
      Fix some corner-case bugs in _sendSQLLine's parsing of SQL commands · c7d1a8d4
      Tom Lane 提交于
      > found in a pg_dump archive.  It had problems with dollar-quote tags
      broken across bufferload boundaries (this may explain bug report from
      Rod Taylor), also with dollar-quote literals of the form $a$a$...,
      and was also confused about the rules for backslash in double quoted
      identifiers (ie, they're not special).  Also put in placeholder support
      for E'...' literals --- this will need more work later.
      c7d1a8d4
    • T
      Avoid changing stdin/stdout to binary mode on Windows unless that is · e1a7d1b9
      Tom Lane 提交于
      really the source or destination of the archive.  I think this will
      resolve recent complaints that password prompting is broken in pg_restore
      on Windows.  Note that password prompting and reading from stdin is an
      unworkable combination on Windows ... but that was true anyway.
      e1a7d1b9
  8. 10 9月, 2005 1 次提交
  9. 09 9月, 2005 2 次提交
    • T
      Given its current definition that depends on time(NULL), timetz_zone · 35979e6c
      Tom Lane 提交于
      is certainly no longer immutable, but must indeed be marked volatile.
      I wonder if it should use the value of now() (that is, transaction
      start time) so that it could be marked stable.  But it's probably not
      important enough to be worth changing the code for ... indeed, I'm not
      even going to force an initdb for this catalog change, seeing that we
      just did one a few hours ago.
      35979e6c
    • T
      timestamptz_izone should return the input, not NULL, when the input · f2ebd01e
      Tom Lane 提交于
      is a non-finite timestamp, for consistency with related functions.
      In other words: +infinity rotated to a different timezone is still
      +infinity.
      f2ebd01e