1. 15 9月, 2017 13 次提交
  2. 14 9月, 2017 13 次提交
  3. 13 9月, 2017 12 次提交
  4. 12 9月, 2017 2 次提交
    • H
      Remove unnecessary handlers of raw parse nodes in contain_windowfuncs() · 211db82e
      Heikki Linnakangas 提交于
      We no longer call contain_windowfunc() on raw parse trees, so we can
      revert this to the way it is in the upstream.
      211db82e
    • H
      Merge with commit '0f855d62', from PostgreSQL 8.4devel. · bea61a71
      Heikki Linnakangas 提交于
      This is the first merge commit, on our way to merging with PostgreSQL 8.4.
      
      Nothing too exciting in this batch. Most of the included changes we had
      in fact already backported earlier. But some things worth mentioning:
      
      * This bumps up the PostgreSQL version number to 8.4devel. This might
        require 3rd party tools to be fixed to cope with that.
      
      * Bumping the version number caused some \d queries in psql to fail,
        because they did a version check and tried to run queries that only work
        on PostgreSQL 8.4. This happens because the GPDB version of psql has been
        backported from 9.0. To make it work for now, I #ifdef'd out the version
        checks, and added GPDB_84_MERGE_FIXME comments to remind us to re-enable
        them again later, once we have merged the backend catalog changes that
        they need.
      
      * Same for a some version checks in pg_upgrade.
      
      * The build system now links the whole backend in one invocation, instead
        of using the per-directory intermediate SUBSYS.o files. We had already
        backported the Makefile changes for that, so this just flips the switch
        to start using it.
      
      This has been a joint effort between Heikki Linnakangas, Daniel Gustafsson,
      Jacob Champion and Tom Meyer.
      bea61a71