1. 05 May, 2004 7 commits
    • Tom Lane's avatar
      Don't assume that struct timeval's tv_sec field is the same datatype as · dadce650
      Tom Lane authored
      time_t; on some platforms they are not the same width.  Per Manfred Koizar.
      dadce650
    • Tom Lane's avatar
      Fix get_rels_with_domain to not do the wrong thing with views and · 1899203f
      Tom Lane authored
      composite types that use a domain.
      1899203f
    • Tom Lane's avatar
      Use a more portable technique for unsetting environment variables, · c7007d18
      Tom Lane authored
      and unset PGCLIENTENCODING to prevent backend from dying if it's set
      to something incompatible with the -E option.
      c7007d18
    • Michael Meskes's avatar
      - Fixed bug in adjust_informix that treated arrays as simple variables. · e845adf3
      Michael Meskes authored
      - Synced parser again.
      - Synced lexer.
      e845adf3
    • Bruce Momjian's avatar
      Done: · a4ab5bae
      Bruce Momjian authored
              o -ALTER TABLE ADD COLUMN does not honor DEFAULT and non-CHECK CONSTRAINT
              o -ALTER TABLE ADD COLUMN column DEFAULT should fill existing
                rows with DEFAULT value
              o -Allow ALTER TABLE to modify column lengths and change to binary
                compatible types
      
      Remove:
      
              o Allow columns to be reordered using ALTER ... POSITION i col1 [,col2];
                have SELECT * and INSERT honor such ordering
      a4ab5bae
    • Neil Conway's avatar
      Fix a typo in the documentation. · 3b8151a5
      Neil Conway authored
      3b8151a5
    • Tom Lane's avatar
      ALTER TABLE rewrite. New cool stuff: · 077db40f
      Tom Lane authored
      * ALTER ... ADD COLUMN with defaults and NOT NULL constraints works per SQL
      spec.  A default is implemented by rewriting the table with the new value
      stored in each row.
      
      * ALTER COLUMN TYPE.  You can change a column's datatype to anything you
      want, so long as you can specify how to convert the old value.  Rewrites
      the table.  (Possible future improvement: optimize no-op conversions such
      as varchar(N) to varchar(N+1).)
      
      * Multiple ALTER actions in a single ALTER TABLE command.  You can perform
      any number of column additions, type changes, and constraint additions with
      only one pass over the table contents.
      
      Basic documentation provided in ALTER TABLE ref page, but some more docs
      work is needed.
      
      Original patch from Rod Taylor, additional work from Tom Lane.
      077db40f
  2. 03 May, 2004 2 commits
  3. 02 May, 2004 9 commits
  4. 01 May, 2004 5 commits
  5. 30 Apr, 2004 14 commits
  6. 29 Apr, 2004 2 commits
  7. 28 Apr, 2004 1 commit
    • Bruce Momjian's avatar
      Fix typo: · a3b0c90e
      Bruce Momjian authored
      <   columns and indexes with many duplicate keys
      a3b0c90e