1. 08 4月, 2016 1 次提交
  2. 07 4月, 2016 7 次提交
    • D
      Use the discovered apr-1-config binary in building gpfdist · ffaa1704
      Daniel Gustafsson 提交于
      Since we discover the apr-1-config binary during the configure stage
      we might as well simplify the gpfdist Makefile by using it during
      building. Also renames the APR_CONFIG variable to avoid colliding
      with $APR_CONFIG using the gpAux makefile.
      ffaa1704
    • H
      Fix broken query in gp_optimizer test. · 5f8d78ff
      Heikki Linnakangas 提交于
      5f8d78ff
    • A
      Remove incorrect assumption that reindex cannot happen within a · 9a09b638
      Asim R P 提交于
      transaction block.
      
      ReindexRelationList is a GPDB specific function that wraps each
      reindex table operation within a separate transaction.  If the table
      being reindexed is a partitioned table, each partition is reindexed in
      a separate transaction.  Now that we have removed the assertion,
      refactor this function to commit and start top level transcation,
      rather than leaving this burden on callers.
      
      Fixes #567.
      9a09b638
    • G
      Using zlib with palloc() for spillfiles and dispatch · 7d2d2388
      George Caragea 提交于
      This commit makes zlib to use palloc/pfree, by rewriting compress_zlib.c to utilize the API in gfile.c, and dispatcher to use palloc and pfree through a set of zlib wrapper functions. This enables our protection mechanisms (gp_vmem_protect_limit, runaway_detector_activation_percent) to keep the system stable by cleanly canceling a query which would otherwise cause us to run out of memory.
      Signed-off-by: NNikos Armenatzoglou <nikos.armenatzoglou@gmail.com>
      7d2d2388
    • F
      Fixing memory leak because of reallocation of level state per partition for... · 6d898d77
      Foyzur Rahman 提交于
      Fixing memory leak because of reallocation of level state per partition for every new partition. Instead, we now reallocate level state for every level in the makeWindowState.
      
      The following repro will consume gigabytes of memory and should run out of memory, given appropriate VMEM configuration:
      
      drop table if exists wtest;
      create table wtest
      (
          id integer,
          dt date,
          name character varying(100),
          created_dt date
      );
      
      insert into wtest select a, current_date + a, 'xyz' || a, current_date + (a % 10) from (select a from generate_series(1, 10000000) as a) as temp;
      
      select row_number() over (w) as row_num,
      id,
      dt,
      name
      from wtest
      window w as (partition by dt,
      name,
      id
      order by created_dt desc
      );
      
      After the fix the same repro should consume very little memory.
      6d898d77
    • A
      Log all filerep logs to server logs instead of separate log files. · 5c754f0e
      Abhijit Subramanya 提交于
      In some cases, the filerep processes get stuck waiting for the spin locks on an
      in memory log and the postmaster PANICs if they can't acquire a lock after
      timeout period. In order to avoid locking related issues we want to avoid
      acquiring the locks in the first place. This patch introduces a new guc which
      will cause filerep logs to be logged to server logs and will avoid logging to
      the in memory log.
      5c754f0e
    • S
      dbac31fe
  3. 06 4月, 2016 3 次提交
  4. 05 4月, 2016 5 次提交
  5. 18 3月, 2016 1 次提交
  6. 05 4月, 2016 1 次提交
    • N
      Removing code related to workfile caching · 00ce2c14
      Nikos Armenatzoglou 提交于
      Workfile caching has already been removed from master. This commit cleans up workfile manager and removes two functions (workfile_mgr_evict and acquire_entry_retry) related to workfile caching that we do not need them anymore.
      00ce2c14
  7. 02 4月, 2016 6 次提交
    • H
      Temporally fix to 'casts to/from string types for every datatype' · ead24acd
      Haozhou Wang 提交于
      Looks it falls back to legacy optimizer when running regression,
      hence we temporally comment out three tests and create a story
      on pivotaltracker #116312671 to solve it later.
      -- comment out two tests in domain.sql
      -- comment out one test in qp_misc_jiras.sql
      
        Thanks to Venkatesh Raghavan for helping
      ead24acd
    • H
      Support casts to/from string types for every datatype · d481bd72
      Haozhou Wang 提交于
      Backport below commits from upstream:
      
          commit 31edbadf
          Author: Tom Lane <tgl@sss.pgh.pa.us>
          Date:   Tue Jun 5 21:31:09 2007 +0000
      
              Downgrade implicit casts to text to be assignment-only, except for the ones
              from the other string-category types; this eliminates a lot of surprising
              interpretations that the parser could formerly make when there was no directly
              applicable operator.
      
              Create a general mechanism that supports casts to and from the standard string
              types (text,varchar,bpchar) for *every* datatype, by invoking the datatype's
              I/O functions.  These new casts are assignment-only in the to-string direction,
              explicit-only in the other, and therefore should create no surprising behavior.
              Remove a bunch of thereby-obsoleted datatype-specific casting functions.
      
              The "general mechanism" is a new expression node type CoerceViaIO that can
              actually convert between *any* two datatypes if their external text
              representations are compatible.  This is more general than needed for the
              immediate feature, but might be useful in plpgsql or other places in future.
      
              This commit does nothing about the issue that applying the concatenation
              operator || to non-text types will now fail, often with strange error messages
              due to misinterpreting the operator as array concatenation.  Since it often
              (not always) worked before, we should either make it succeed or at least give
              a more user-friendly error; but details are still under debate.
      
              Peter Eisentraut and Tom Lane
      
          commit bf940763
          Author: Tom Lane <tgl@sss.pgh.pa.us>
          Date:   Tue Mar 27 23:21:12 2007 +0000
      
              Fix array coercion expressions to ensure that the correct volatility is
              seen by code inspecting the expression.  The best way to do this seems
              to be to drop the original representation as a function invocation, and
              instead make a special expression node type that represents applying
              the element-type coercion function to each array element.  In this way
              the element function is exposed and will be checked for volatility.
              Per report from Guillaume Smet.
      d481bd72
    • F
      Adding test changes in alter_table_optimizer.out for fixing tuple descriptor... · cc599b5b
      Foyzur Rahman 提交于
      Adding test changes in alter_table_optimizer.out for fixing tuple descriptor leak in split_rows during an ALTER TABLE SPLIT PARTITION.
      cc599b5b
    • F
    • N
      add a comment explaining search_path's role in the bug · 1ac9e8fa
      Nikhil Kak 提交于
      1ac9e8fa
    • N
  8. 01 4月, 2016 3 次提交
    • D
      Remove leftover prototype for updateAppendOnlyStats() · 55ec56f7
      Daniel Gustafsson 提交于
      The function updateAppendOnlyStats() was removed in 3fb6ca82 but the
      prototype remained.
      55ec56f7
    • X
      Migrate olap_group tests to ICG [#116156843] · f84308c3
      Xin Zhang 提交于
      Signed-off-by: NXin Zhang <xzhang@pivotal.io>
      f84308c3
    • J
      Fix gp_default_storage_options GUC master/segment value conflict. · b11fc6d5
      Jimmy Yih 提交于
      The gp_default_storage_options GUC had two scenarios in which the value between
      master and segments could be conflicting which would cause tables to possibly
      have different storage parameters between master and segments.
      
      First Scenario:
      The below gpconfig example would give newly created user tables a default storage
      parameter of AO on segments while master sets the table as heap. Fixed by not
      allowing the user to make them different values.
      gpconfig -c gp_default_storage_options -v "'appendonly=true'" -m "'appendonly=false'"
      
      Second Scenario:
      During a psql session not in transaction, a session-level gp_default_storage_options
      GUC value can be set which will also be dispatched to segment processes. Those
      segment processes when idle for a period of time will be stopped and the next SQL
      (e.g. CREATE TABLE) will spawn new segment processes which will not have the
      session-level GUC value set. Fixed by setting the value at cdbgang creation.
      b11fc6d5
  9. 31 3月, 2016 7 次提交
  10. 30 3月, 2016 1 次提交
  11. 29 3月, 2016 2 次提交
  12. 28 3月, 2016 3 次提交
    • K
      Fix TupleDesc leak when COPY partition table from file, and improve · 5d9f7b46
      Kenan Yao 提交于
      the cleanup of EState
      5d9f7b46
    • E
      Fix DML_over_joins non-deterministic expected error condition. · 04c194d8
      Ed Espino 提交于
      Below is the error condition that was being filtered by the cdbfast test
      framework.  I have added an ignore section around the update that is
      expected to fail in the planner scenario.
      
      *** ./expected/DML_over_joins.out2016-03-27 16:44:49.000000000 -0700
      --- ./results/DML_over_joins.out2016-03-27 16:44:49.000000000 -0700
      ***************
      *** 1342,1348 ****
      (2 rows)
      
      update sales_par set region = 'new_region' where id in (select s.b from s, r where s.a = r.b) and day in (select a from r);
      ! ERROR:  moving tuple from partition "sales_par_1_prt_usa" to partition "sales_par_1_prt_other_regions" not supported
      select sales_par.* from sales_par where id in (select s.b from s, r where s.a = r.b) and day in (select a from r);
      id | year | month | day | region
      ----+------+-------+-----+--------
      --- 1342,1348 ----
      (2 rows)
      
      update sales_par set region = 'new_region' where id in (select s.b from s, r where s.a = r.b) and day in (select a from r);
      ! ERROR:  moving tuple from partition "sales_par_1_prt_europe" to partition "sales_par_1_prt_other_regions" not supported
      select sales_par.* from sales_par where id in (select s.b from s, r where s.a = r.b) and day in (select a from r);
      id | year | month | day | region
      ----+------+-------+-----+--------
      
      ======================================================================
      04c194d8
    • E
      Resolve #572: Migrate list_queries sirv_functions to ICG. · 28601ac4
      Ed Espino 提交于
      This enhances the existing "sirv_functions" ICG tests.  This is
      accomplished by migrating the cdbfast regression "list_queries" test
      schedule's "sirv_functions" test suite to ICG.
      
      Here are some characteristics of the test suite:
      
        Schedule file: greenplum_schedule
        Schema: sirv_functions
        Set to run in parallel: yes
        Orca specific test output: no
        Test execution time: <1 minute
        Pivotal Tracker Story: #113967799
      28601ac4