1. 28 Mar, 2000 6 commits
  2. 27 Mar, 2000 8 commits
  3. 26 Mar, 2000 16 commits
  4. 25 Mar, 2000 8 commits
  5. 24 Mar, 2000 2 commits
    • Tom Lane's avatar
      transformCreateStmt should put Ident nodes, not ColumnDef nodes, into · 5c462bae
      Tom Lane authored
      keys lists of Constraint nodes.  This eliminates a type pun that would
      probably have caused trouble someday, and eliminates circular references
      in the parsetree that were causing trouble now.
      Also, change parser's uses of strcasecmp() to strcmp().  Since scan.l
      has downcased any unquoted identifier, it is never correct to check an
      identifier with strcasecmp() in the parser.  For example,
      	CREATE TABLE FOO (f1 int, UNIQUE("F1"));
      was accepted, which is wrong, and xlateSqlFunc did more than it should:
      select datetime();
      ERROR:  Function 'timestamp()' does not exist
      (good)
      select "DateTime"();
      ERROR:  Function 'timestamp()' does not exist
      (bad)
      5c462bae
    • Tom Lane's avatar
      Improve comment. · 8f50f7a2
      Tom Lane authored
      8f50f7a2