sync all inner code

This commit is contained in:
openGaussDev
2022-10-27 20:21:03 +08:00
committed by yanghao
parent a10741b11e
commit f7d23913d6
520 changed files with 63136 additions and 9761 deletions

View File

@ -437,8 +437,11 @@ VecStreamState* ExecInitVecStream(Stream* node, EState* estate, int eflags)
state->vector_output = true;
state->StreamScan = ScanStreamByLibcomm;
if (STREAM_IS_LOCAL_NODE(node->smpDesc.distriType))
if (STREAM_IS_LOCAL_NODE(node->smpDesc.distriType)) {
state->StreamScan = ScanMemoryStream;
/* local stream do not support merge sort */
((Stream*)(state->ss.ps.plan))->sort = NULL;
}
state->StreamDeserialize = get_batch_from_conn_buffer;