1. 26 8月, 2001 1 次提交
  2. 25 8月, 2001 12 次提交
  3. 24 8月, 2001 5 次提交
  4. 23 8月, 2001 9 次提交
  5. 22 8月, 2001 8 次提交
    • B
      Attached is a simple one line patch for the problem reported in the · ef80c87f
      Bruce Momjian 提交于
      following email.
      
       > > The problem:  When I call getBigDecimal() on a ResultSet, it
       > > sometimes throws an exception:
       > >
       > >   Bad BigDecimal 174.50
       > >     at org.postgresql.jdbc2.ResultSet.getBigDecimal(ResultSet.java:373)
       > >     at org.postgresql.jdbc2.ResultSet.getBigDecimal(ResultSet.java:984)
       > >     ...blah blah blah...
       > >   org.postgresql.util.PSQLException: Bad BigDecimal 174.50
      
      Barry Lind
      ef80c87f
    • B
      Here's a resend of the patch.gz. I gunzip'ed it fine here · e8f7bfc0
      Bruce Momjian 提交于
      so it may be a transit problem.  Also removed the 'txt' suffix
      in case that was confusing some transport layer trying to be
      too inteligent for our own good.
      
      This may have been because the Array.java class from the
      previous patch didn't seem to have made it into the snapshot
      build for some reason.  This patch should at least fix that issue.
      
      Greg Zoller
      e8f7bfc0
    • T
      Remove special-case treatment of all-zeroes MAC address, per today's · b04e3a25
      Tom Lane 提交于
      discussion in pgsql-general.
      b04e3a25
    • B
      > Ok, where's a "system dependent hack" :) · 5db5c2db
      Bruce Momjian 提交于
      > It seems that win9x doesn't have the "netmsg.dll" so it defaults to "normal"
      > FormatMessage.
      > I wonder if one could load wsock32.dll or winsock.dll on those systems
      > instead of netmsg.dll.
      >
      > Mikhail, could you please test this code on your nt4 system?
      > Could someone else test this code on a win98/95 system?
      >
      > It works on win2k over here.
      
      It works on win2k here too but not on win98/95 or winNT.
      Anyway, attached is the patch which uses Magnus's my_sock_strerror
      function (renamed to winsock_strerror). The only difference is that
      I put the code to load and unload netmsg.dll in the libpqdll.c
      (is this OK Magnus?).
      
      Mikhail Terekhov
      5db5c2db
    • T
      Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions in · f933766b
      Tom Lane 提交于
      pgsql-hackers.  pg_opclass now has a row for each opclass supported by each
      index AM, not a row for each opclass name.  This allows pg_opclass to show
      directly whether an AM supports an opclass, and furthermore makes it possible
      to store additional information about an opclass that might be AM-dependent.
      pg_opclass and pg_amop now store "lossy" and "haskeytype" information that we
      previously expected the user to remember to provide in CREATE INDEX commands.
      Lossiness is no longer an index-level property, but is associated with the
      use of a particular operator in a particular index opclass.
      
      Along the way, IndexSupportInitialize now uses the syscaches to retrieve
      pg_amop and pg_amproc entries.  I find this reduces backend launch time by
      about ten percent, at the cost of a couple more special cases in catcache.c's
      IndexScanOK.
      
      Initial work by Oleg Bartunov and Teodor Sigaev, further hacking by Tom Lane.
      
      initdb forced.
      f933766b
    • B
      c2d15669
    • P
      Add -Wno-error because of "unclean" flex output. · 1837f8cb
      Peter Eisentraut 提交于
      1837f8cb
    • B
      Regroup GEQO configs. · 253ade2c
      Bruce Momjian 提交于
      253ade2c
  6. 21 8月, 2001 5 次提交