• W
    Fix gp_max_csv_line_length does not work in INSERT INTO ... SELECT ... · d4081ea1
    Wang Hao 提交于
    gp_max_csv_line_length is a session level GUC. When change it in
    session, it affects statement like select * from <external_table>.
    But it does not work for INSERT INTO table SELECT * FROM <external_table>.
    For such statement, the scan of external table happens in a QE backend
    process, not the QD.
    This fix add GUC_GPDB_ADDOPT so that setting this GUC in session level
    can affect both QD and QE process.
    d4081ea1
external_table.source 107.6 KB