1. 24 1月, 2001 6 次提交
    • T
      Give 'a_expr ::= a_expr Op' production a slightly lower precedence than · f69ff0c4
      Tom Lane 提交于
      Op, so that the sequence 'a_expr Op Op a_expr' will be parsed as
      a_expr Op (Op a_expr) not (a_expr Op) Op a_expr as formerly.  In other
      words, prefer treating user-defined operators as prefix operators to
      treating them as postfix operators, when there is an ambiguity.
      Also clean up a couple of other infelicities in production priority
      assignment --- for example, BETWEEN wasn't being given the intended
      priority, but that of AND.
      f69ff0c4
    • B
      Subject: Bug in SQLForeignKeys() · edfca4b9
      Bruce Momjian 提交于
      
      Query used for checking foreign key triggers
      returns too many results when there're more than one foreign
      key in a table. It happens because only table's oid is used to
      link between pg_trigger with INSERT check and pg_trigger with
      UPDATE/DELETE check.
      
      I think there should be enough to add following conditions
      into WHERE clause of that query:
              AND     pt.tgconstrname = pg_trigger.tgconstrname
              AND     pt.tgconstrname = pg_trigger_1.tgconstrname
      
      /Constantin
      edfca4b9
    • P
      3de8407e
    • B
      Add · 6b3c8e31
      Bruce Momjian 提交于
      6b3c8e31
    • B
      Add email. · ab2c9051
      Bruce Momjian 提交于
      ab2c9051
    • B
      Update TODO list. · 04a843b2
      Bruce Momjian 提交于
      04a843b2
  2. 23 1月, 2001 25 次提交
  3. 22 1月, 2001 9 次提交