1. 13 Jun, 2000 7 commits
  2. 12 Jun, 2000 11 commits
  3. 11 Jun, 2000 5 commits
  4. 10 Jun, 2000 9 commits
  5. 09 Jun, 2000 8 commits
    • Bruce Momjian's avatar
      Fix initdb spaces problem. · 7bd58b47
      Bruce Momjian authored
      7bd58b47
    • Bruce Momjian's avatar
      Add tablespaces todo item · 1d2fea9b
      Bruce Momjian authored
      1d2fea9b
    • Bruce Momjian's avatar
      This patch fixes the 0-based/1-based result set indexing problem for · d3ef7536
      Bruce Momjian authored
      absolute.  It also makes it more compliant with the interface
      specification in Sun's documentation;
      
      1. absolute(0) should throw an exception.
      2. absolute(>num-records) should set the current row to after the last
      record in addition to returning false.
      3. absolute(<num-records) should set the current row to before the first
      record in addition to returning false.
      
      These operations in the existing code just return false and don't change
      current_row.
      
      These changes required a minor change to relative(int) since it calls
      absolute(int)
      
      The attached patch is against the cvs repository tree as of this morning.
      
      Also, who is in charge of maintaining the jdbc driver?  I'm working on
      getArray for the jdbc2 driver, but it's going to require three more
      classes to be added to the driver, and thus three more source files
      in the repository.  Is there someone I can contact directly to ask about
      this?
      
      Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer
      d3ef7536
    • Bruce Momjian's avatar
      Update bsdi faq. · bd29cb0e
      Bruce Momjian authored
      bd29cb0e
    • Bruce Momjian's avatar
      · 3fe3acb8
      Bruce Momjian authored
      I have made the couple of mods required to make the odbc driver with
      postgres build and use unixODBC (http://www.unixodbc.org)
      
      This patch was applied against the postgresql-7.0beta1 build
      
      Any problems let me know.
      
      Nick Gorham
      3fe3acb8
    • Bruce Momjian's avatar
      I have large database and with this DB work more users and I very need · 85add42a
      Bruce Momjian authored
      more restriction for fretful users. The current PG allow define only
      NO-CREATE-DB and NO-CREATE-USER restriction, but for some users I need
      NO-CREATE-TABLE and NO-LOCK-TABLE.
      
      This patch add to current code NOCREATETABLE and NOLOCKTABLE feature:
      
      CREATE USER username
          [ WITH
           [ SYSID uid ]
           [ PASSWORD 'password' ] ]
          [ CREATEDB   | NOCREATEDB ] [ CREATEUSER | NOCREATEUSER ]
      ->  [ CREATETABLE | NOCREATETABLE ] [ LOCKTABLE | NOLOCKTABLE ]
          ...etc.
      
       If CREATETABLE or LOCKTABLE is not specific in CREATE USER command,
      as default is set CREATETABLE or LOCKTABLE (true).
      
       A user with NOCREATETABLE restriction can't call CREATE TABLE or
      SELECT INTO commands, only create temp table is allow for him.
      
                                                      Karel
      85add42a
    • Bruce Momjian's avatar
      Prompt username/password on stderr so: · a672e965
      Bruce Momjian authored
           pg_dump -o -u some_db >dump_file
      
      works.
      a672e965
    • Bruce Momjian's avatar
      Update FAQ. · e6487cc4
      Bruce Momjian authored
      e6487cc4