Skip to content
Snippets Groups Projects
  1. Nov 20, 2012
    • Tom Lane's avatar
      Improve handling of INT_MIN / -1 and related cases. · 278b6059
      Tom Lane authored
      Some platforms throw an exception for this division, rather than returning
      a necessarily-overflowed result.  Since we were testing for overflow after
      the fact, an exception isn't nice.  We can avoid the problem by treating
      division by -1 as negation.
      
      Add some regression tests so that we'll find out if any compilers try to
      optimize away the overflow check conditions.
      
      Back-patch of commit 1f7cb5c3.
      
      Per discussion with Xi Wang, though this is different from the patch he
      submitted.
      278b6059
  2. Nov 14, 2012
    • Tom Lane's avatar
      Fix the int8 and int2 cases of (minimum possible integer) % (-1). · 3b4db79e
      Tom Lane authored
      The correct answer for this (or any other case with arg2 = -1) is zero,
      but some machines throw a floating-point exception instead of behaving
      sanely.  Commit f9ac414c dealt with this
      in int4mod, but overlooked the fact that it also happens in int8mod
      (at least on my Linux x86_64 machine).  Protect int2mod as well; it's
      not clear whether any machines fail there (mine does not) but since the
      test is so cheap it seems better safe than sorry.  While at it, simplify
      the original guard in int4mod: we need only check for arg2 == -1, we
      don't need to check arg1 explicitly.
      
      Xi Wang, with some editing by me.
      3b4db79e
  3. Jan 02, 2012
  4. Jun 17, 2011
  5. Mar 12, 2011
  6. Jan 01, 2011
  7. Nov 20, 2010
  8. Sep 20, 2010
  9. Feb 26, 2010
  10. Feb 08, 2010
    • Tom Lane's avatar
      Create an official API function for C functions to use to check if they are · d5768dce
      Tom Lane authored
      being called as aggregates, and to get the aggregate transition state memory
      context if needed.  Use it instead of poking directly into AggState and
      WindowAggState in places that shouldn't know so much.
      
      We should have done this in 8.4, probably, but better late than never.
      
      Revised version of a patch by Hitoshi Harada.
      d5768dce
  11. Jan 07, 2010
  12. Jan 02, 2010
  13. Sep 03, 2009
    • Tom Lane's avatar
      Install a workaround for a longstanding gcc bug that allows SIGFPE traps · d0a368c6
      Tom Lane authored
      to occur for division by zero, even though the code is carefully avoiding
      that.  All available evidence is that the only functions affected are
      int24div, int48div, and int28div, so patch just those three functions to
      include a "return" after the ereport() call.
      
      Backpatch to 8.4 so that the fix can be tested in production builds.
      For older branches our recommendation will continue to be to use -O1
      on affected platforms (which are mostly non-mainstream anyway).
      d0a368c6
  14. Jun 11, 2009
  15. Jan 01, 2009
  16. Dec 28, 2008
  17. Oct 06, 2008
    • Tom Lane's avatar
      Tweak the overflow checks in integer division functions to complain if the · 8acfc759
      Tom Lane authored
      machine produces zero (rather than the more usual minimum-possible-integer)
      for the only possible overflow case.  This has been seen to occur for at least
      some word widths on some hardware, and it's cheap enough to check for
      everywhere.  Per Peter's analysis of buildfarm reports.
      
      This could be back-patched, but in the absence of any gripes from the field
      I doubt it's worth the trouble.
      8acfc759
  18. Jun 17, 2008
    • Tom Lane's avatar
      Clean up some problems with redundant cross-type arithmetic operators. Add · b163baa8
      Tom Lane authored
      int2-and-int8 implementations of the basic arithmetic operators +, -, *, /.
      This doesn't really add any new functionality, but it avoids "operator is not
      unique" failures that formerly occurred in these cases because the parser
      couldn't decide whether to promote the int2 to int4 or int8.  We could
      alternatively have removed the existing cross-type operators, but
      experimentation shows that the cost of an additional type coercion expression
      node is noticeable compared to such cheap operators; so let's not give up any
      performance here.  On the other hand, I removed the int2-and-int4 modulo (%)
      operators since they didn't seem as important from a performance standpoint.
      Per a complaint last January from ykhuang.
      b163baa8
  19. Apr 21, 2008
    • Tom Lane's avatar
      Allow float8, int8, and related datatypes to be passed by value on machines · 8472bf7a
      Tom Lane authored
      where Datum is 8 bytes wide.  Since this will break old-style C functions
      (those still using version 0 calling convention) that have arguments or
      results of these types, provide a configure option to disable it and retain
      the old pass-by-reference behavior.  Likewise, provide a configure option
      to disable the recently-committed float4 pass-by-value change.
      
      Zoltan Boszormenyi, plus configurability stuff by me.
      8472bf7a
  20. Jan 01, 2008
  21. Aug 30, 2007
  22. Jun 05, 2007
    • Tom Lane's avatar
      Downgrade implicit casts to text to be assignment-only, except for the ones · 31edbadf
      Tom Lane authored
      from the other string-category types; this eliminates a lot of surprising
      interpretations that the parser could formerly make when there was no directly
      applicable operator.
      
      Create a general mechanism that supports casts to and from the standard string
      types (text,varchar,bpchar) for *every* datatype, by invoking the datatype's
      I/O functions.  These new casts are assignment-only in the to-string direction,
      explicit-only in the other, and therefore should create no surprising behavior.
      Remove a bunch of thereby-obsoleted datatype-specific casting functions.
      
      The "general mechanism" is a new expression node type CoerceViaIO that can
      actually convert between *any* two datatypes if their external text
      representations are compatible.  This is more general than needed for the
      immediate feature, but might be useful in plpgsql or other places in future.
      
      This commit does nothing about the issue that applying the concatenation
      operator || to non-text types will now fail, often with strange error messages
      due to misinterpreting the operator as array concatenation.  Since it often
      (not always) worked before, we should either make it succeed or at least give
      a more user-friendly error; but details are still under debate.
      
      Peter Eisentraut and Tom Lane
      31edbadf
  23. Feb 28, 2007
    • Tom Lane's avatar
      Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len). · 234a02b2
      Tom Lane authored
      Get rid of VARATT_SIZE and VARATT_DATA, which were simply redundant with
      VARSIZE and VARDATA, and as a consequence almost no code was using the
      longer names.  Rename the length fields of struct varlena and various
      derived structures to catch anyplace that was accessing them directly;
      and clean up various places so caught.  In itself this patch doesn't
      change any behavior at all, but it is necessary infrastructure if we hope
      to play any games with the representation of varlena headers.
      Greg Stark and Tom Lane
      234a02b2
  24. Feb 01, 2007
    • Bruce Momjian's avatar
      Wording cleanup for error messages. Also change can't -> cannot. · 8b4ff8b6
      Bruce Momjian authored
      Standard English uses "may", "can", and "might" in different ways:
      
              may - permission, "You may borrow my rake."
      
              can - ability, "I can lift that log."
      
              might - possibility, "It might rain today."
      
      Unfortunately, in conversational English, their use is often mixed, as
      in, "You may use this variable to do X", when in fact, "can" is a better
      choice.  Similarly, "It may crash" is better stated, "It might crash".
      8b4ff8b6
  25. Jan 05, 2007
  26. Oct 04, 2006
  27. Jul 28, 2006
  28. Mar 05, 2006
  29. Oct 15, 2005
  30. Mar 12, 2005
    • Tom Lane's avatar
      Adjust the API for aggregate function calls so that a C-coded function · fa5e4401
      Tom Lane authored
      can tell whether it is being used as an aggregate or not.  This allows
      such a function to avoid re-pallocing a pass-by-reference transition
      value; normally it would be unsafe for a function to scribble on an input,
      but in the aggregate case it's safe to reuse the old transition value.
      Make int8inc() do this.  This gets a useful improvement in the speed of
      COUNT(*), at least on narrow tables (it seems to be swamped by I/O when
      the table rows are wide).  Per a discussion in early December with
      Neil Conway.  I also fixed int_aggregate.c to check this, thereby
      turning it into something approaching a supportable technique instead
      of being a crude hack.
      fa5e4401
  31. Dec 31, 2004
    • PostgreSQL Daemon's avatar
      · 2ff50159
      PostgreSQL Daemon authored
      Tag appropriate files for rc3
      
      Also performed an initial run through of upgrading our Copyright date to
      extend to 2005 ... first run here was very simple ... change everything
      where: grep 1996-2004 && the word 'Copyright' ... scanned through the
      generated list with 'less' first, and after, to make sure that I only
      picked up the right entries ...
      2ff50159
  32. Oct 04, 2004
    • Tom Lane's avatar
      Detect overflow in integer arithmetic operators (integer, smallint, and · 4171bb86
      Tom Lane authored
      bigint variants).  Clean up some inconsistencies in error message wording.
      Fix scanint8 to allow trailing whitespace in INT64_MIN case.  Update
      int8-exp-three-digits.out, which seems to have been ignored by the last
      couple of people to modify the int8 regression test, and remove
      int8-exp-three-digits-win32.out which is thereby exposed as redundant.
      4171bb86
  33. Aug 29, 2004
  34. Apr 02, 2004
  35. Mar 11, 2004
    • Neil Conway's avatar
      Revise int2/int4/int8/float4/float8 input routines to allow for · e2ded829
      Neil Conway authored
      any amount of leading or trailing whitespace (where "whitespace"
      is defined by isspace()). This is for SQL conformance, as well
      as consistency with other numeric types (e.g. oid, numeric).
      
      Also refactor pg_atoi() to avoid looking at errno where not
      necessary, and add a bunch of regression tests for the input
      to these types.
      e2ded829
  36. Feb 03, 2004
    • Joe Conway's avatar
      Add function (actually an int4 and an int8 version) that generates · 12661642
      Joe Conway authored
      a series of numbers, optionally using an explicit step size other
      than the default value (one). Use function in the information_schema
      to replace hard-wired knowledge of INDEX_MAX_KEYS. initdb forced due
      to pg_proc change. Documentation update still needed -- will be
      committed separately.
      12661642
  37. Dec 01, 2003
    • Bruce Momjian's avatar
      Attached is a patch implementing factorial(), returning numeric. Points · 04a4821a
      Bruce Momjian authored
      to note:
      
      1) arttype is numeric. I thought this was the best way of allowing
      arbitarily large factorials, even though factorial(2^63) is a large
      number. Happy to change to integers if this is overkill.
      2) since we're accepting numeric arguments, the patch tests for floats.
      If a numeric is passed with non-zero decimal portion, an error is raised
      since (from memory) they are undefined.
      
      Gavin Sherry
      04a4821a
  38. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  39. Sep 25, 2003
Loading