1. 07 1月, 2016 21 次提交
  2. 06 1月, 2016 4 次提交
  3. 05 1月, 2016 7 次提交
  4. 01 1月, 2016 2 次提交
    • D
      Reject compiler switches resulting in warnings · 4d2de40d
      Daniel Gustafsson 提交于
      When checking compiler switches during configure, reject the ones that
      result in a compiler warning, this for example happens when building
      with clang which throw a warning on unknown warning options when testing
      gcc switches:
      
          warning: unknown warning option '-Wno-unused-but-set-variable';
      
      This is a partial port of 44404f39 from
      upstream, see original commitmessage below.
      
          commit 44404f39
          Author: Tom Lane <tgl@sss.pgh.pa.us>
          Date:   Thu May 26 17:29:33 2011 -0400
      
              Adjust configure to use "+Olibmerrno" with HP-UX C compiler, if possible.
      
              This is reported to be necessary on some versions of that OS.  In service
              of this, cause PGAC_PROG_CC_CFLAGS_OPT to reject switches that result in
              compiler warnings, since on yet other versions of that OS, the switch does
              nothing except provoke a warning.
      
              Report and patch by Ibrar Ahmed, further tweaking by me.
      4d2de40d
    • H
      Don't remove gp_toolkit.sql and gp_toolkit_test.sql in "make clean" · dd5f88a8
      Heikki Linnakangas 提交于
      They are not generated files anymore.
      dd5f88a8
  5. 31 12月, 2015 2 次提交
    • H
      Simplify the way gp_toolkit schema is installed · f8910c3c
      Heikki Linnakangas 提交于
      Use the standard initdb mechanism for it, instead of having bespoken code
      in gpinitsystem.
      
      Also remove the unnecessarily complicated logic to generate gp_toolkit.sql
      from gp_toolkit.sql.in. All the JETPACK_* variables were constants, and
      there is particular need in making the gp_toolkit functions relocatable to
      different schemas or prefixes, so just hardcode them and remove the sed
      magic.
      
      Rewrite the file header of gp_toolkit.sql. The legal blurp is not needed,
      make the header look more like that of information_schema.sql and
      system_views.sql.
      
      Remove compaction_info.sql. It was only needed for old in-place
      upgrade from 4.3.x to 4.3.4.2, which is not relevant for master branch.
      
      Fix the "jetpack" bugbuster regression test. It was originally written to
      test the gp_toolkit views, but gp_toolkit was in fact not installed in
      bugbuster, and the expected output just contained a bunch of "relation
      does not exist" errors. Now it actually tests gp_toolkit again. Some of
      the test queries didn't produce repeateable results, due to differing oids,
      differences in table sizes, and other tables created by previous tests, so
      fixed those too.
      
      This has a small user-visible difference: gp_toolkit schema is now also
      installed in template0. That caused the difference in the expected outputs:
      pg_regress creates the "regression" database using template0 as the
      template, so gp_toolkit used to not be installed in it, but it is now.
      f8910c3c
    • V
      Cleaning up non-deterministic tests · 524b1f29
      Venkatesh Raghavan 提交于
      524b1f29
  6. 30 12月, 2015 4 次提交