add openGauss 3.1.0 feature code

This commit is contained in:
yanghao
2022-09-03 16:22:35 +08:00
parent 801d945a3d
commit b919f404e8
2759 changed files with 521358 additions and 366321 deletions

View File

@ -119,13 +119,6 @@ void GetPlanNodePlainText(
}
}
break;
case T_DfsScan:
*pt_operation = "TABLE ACCESS";
if (((Scan*)plan)->isPartTbl)
*pname = *sname = *pt_options = "Partitioned Dfs Scan";
else
*pname = *sname = *pt_options = "Dfs Scan";
break;
case T_CStoreScan:
*pt_operation = "TABLE ACCESS";
if (!((Scan*)plan)->tablesample) {
@ -188,20 +181,6 @@ void GetPlanNodePlainText(
else
*pname = *sname = *pt_options = "Bitmap Heap Scan";
break;
case T_DfsIndexScan:
*pt_operation = "INDEX";
if (((Scan*)plan)->isPartTbl) {
if (((DfsIndexScan*)plan)->indexonly)
*pname = *sname = *pt_options = "Partitioned Dfs Index Only Scan";
else
*pname = *sname = *pt_options = "Partitioned Dfs Index Scan";
} else {
if (((DfsIndexScan*)plan)->indexonly)
*pname = *sname = *pt_options = "Dfs Index Only Scan";
else
*pname = *sname = "Dfs Index Scan";
}
break;
case T_CStoreIndexScan:
*pt_operation = "INDEX";
if (((CStoreIndexScan*)plan)->scan.isPartTbl) {