1. 07 Oct, 1998 3 commits
  2. 06 Oct, 1998 16 commits
  3. 05 Oct, 1998 6 commits
  4. 04 Oct, 1998 9 commits
  5. 03 Oct, 1998 3 commits
  6. 02 Oct, 1998 3 commits
    • Bruce Momjian's avatar
      · e5a8da02
      Bruce Momjian authored
          Please apply the patch at the end. Disables use of system
          columns of views at all (not only oid, cmin etc. too).
          pgsql=> select cmin from pg_rules;
          ERROR:  system column cmin not available - pg_rules is a view
          pgsql=> select * from pg_rules where pg_rules.oid = pg_class.oid;
          ERROR:  system column oid not available - pg_rules is a view
          pgsql=>
      
      Jan
      e5a8da02
    • Thomas G. Lockhart's avatar
      Obsolete information completely superceded by the sgml sources. · 2da5e598
      Thomas G. Lockhart authored
      These weren't really "man page"-ish anyway, and I've verified that
       all information in them has moved to the newer sources.
      2da5e598
    • Thomas G. Lockhart's avatar
      Surround all identifiers with double quotes. · 96019647
      Thomas G. Lockhart authored
       Formerly did so only for those which clearly required it, but that
       would still miss things like reserved key words which also require it.
      Implement the "-n" switch to revert the double quote behavior
       to put DQs only where there is more than lower-case, digits,
       and underscores.
      96019647