1. 14 2月, 2017 20 次提交
  2. 13 2月, 2017 8 次提交
    • H
      Remove unused global variable. · 55217ed6
      Heikki Linnakangas 提交于
      In commit 3a795d25, I refactored things so that it was left unused, but I
      failed to actually remove it then.
      55217ed6
    • D
      Remove redundant compiler flag · bd3c0efa
      Daniel Gustafsson 提交于
      -pthread is coming as part of PTHREAD_CFLAGS, no need to add it separately.
      bd3c0efa
    • D
      Remove dead code · 97d3a935
      Daniel Gustafsson 提交于
      cdb_dumpall_agent.c is neither compiled, not does it contain anything
      of interest. Kill it for now, if we want cdb_dumpall_agent it can be
      resurrected or started on from scratch.
      97d3a935
    • H
      Remove obsolete "pg_on_solaris" code. · 53e75668
      Heikki Linnakangas 提交于
      This hasn't been tested for a while. And if someone wants to build GPDB on
      Solaris, should use autoconf tests and upstream "#ifdef _sparc" method to
      guard platform-dependent code, rather than the GPDB-specific "pg_on_solaris"
      flag.
      53e75668
    • H
      Silence "role does not exist, skipping" messages from segments on DROP USER. · 9c5568f8
      Heikki Linnakangas 提交于
      If you did "DROP USER IF EXISTS not_there", you got a notice from every
      segment:
      
      postgres=# DROP USER IF EXISTS testuser;
      NOTICE:  role "testuser" does not exist, skipping
      NOTICE:  role "testuser" does not exist, skipping  (seg0 127.0.0.1:40000 pid=1554)
      NOTICE:  role "testuser" does not exist, skipping  (seg1 127.0.0.1:40001 pid=1556)
      NOTICE:  role "testuser" does not exist, skipping  (seg2 127.0.0.1:40002 pid=1555)
      
      That was quite noisy. Suppress the notices from the segments, so that you
      only get one NOTICE, from the master. We had done this for all other object
      types that support IF EXISTS, like tables, functions, etc.
      9c5568f8
    • P
      Fix internalstyle inconsistency between QD and QEs · 8a341fc3
      Pengzhou Tang 提交于
      Add GUC_GPDB_ADDOPT flag for internalstyle so it can be dispatched to QEs
      8a341fc3
    • A
      gpcloud: regress: update outputing syntax · f13abf12
      Adam Lee 提交于
      f13abf12
    • D
      Retire Bugbuster view suite · f386bece
      Daniel Gustafsson 提交于
      The tests in this suite are simply wrapping queries from other ICW
      suites (mainly qp_derived_table, qp_olap_window, qp_olap_mdqa) in
      plain CREATE VIEW statements with a SELECT * on the view. Remove as
      we already have the queries in testing and we have ample coverage
      of CREATE VIEW in the create_view suite.
      f386bece
  3. 12 2月, 2017 3 次提交
    • H
      Remove obsolete hack to re-format DETAIL lines from external tables. · 743b886a
      Heikki Linnakangas 提交于
      This code was put in place back in 2007, to work around inconsistent
      formattin of the DETAIL lines in errors coming from external tables.
      
      From MPP-1557:
      
      > The exttab1 test fails occassionally due to strangeness in the DETAIL
      > formatting. Here's what happens when I select from my badly-formatted
      > external table. Note that for the same select statement on the same table,
      > the DETAIL record formatting is different:
      >
      > jc1=# select count from bad_whois ;
      > ERROR: missing data for column "domain_name" (seg0 slice1 localhost:11002 pid=11535)
      > DETAIL: External table bad_whois, line 2 of gpfdist://localhost:8080/whois.csv: ""
      >
      > jc1=# select count from bad_whois ;
      > ERROR: missing data for column "subdomain" (seg0 slice1 localhost:11002 pid=11535)
      > DETAIL:
      > External table bad_whois, line 3 of gpfdist://localhost:8080/whois.csv: "is provided by WEBCC for information purposes, and to assist in obtaining
      > information about or rela..."
      >
      > The problem is that normally the DETAIL information comes immediately on
      > the same line as the "DETAIL:" label, but if the DETAIL information
      > contains a newline, then a newline is inserted after the "DETAIL:" label.
      > It's a little tricky to handle this case cleanly for gpdiff comparison.
      > If the discrepancy is due to some weirdness in external table message
      > generation, it would be nice to fix, but if it is due to some strange
      > postgresql message formatting I can probably live with it.
      
      That doesn't seem to be a problem anymore, so remove the hack.
      743b886a
    • H
      Remove obsolete version printing in atmsort.pm · cd4bae26
      Heikki Linnakangas 提交于
      We haven't used CVS, with its Revision tags, for a very long time.
      cd4bae26
    • H
      Fix alternative expected output. · 6d418638
      Heikki Linnakangas 提交于
      Commit fecad30b forgot to update this alternative expected output. (For
      when you build without ORCA)
      6d418638
  4. 11 2月, 2017 9 次提交