Max Yang
Max Yang
``` create table t11(a int, b int); insert into t11 select i%3, i from generate_series(1,15)i; gpadmin=# set optimizer=off; SET gpadmin=# select * from t11 order by a fetch first 2...
We need to enhance materialized view in CBDB: ``` Automatically refresh mt view instead of manually. Incremental refresh mt view. Results reuse for mt view by planner ```
We could support offline repo, so that Cloudberry could download dependencies automatically.
We need to support for parallel cursor. For some scenario, users want to rescan partial parallel cursor results, but current we don't support it. Let parallel cursor could be rescanable...
Now, the print logic of cbdb_log seemly is of redundancy. We can try to complete with `vfprintf` instead of `fprintf`.
The CBDB container version should have these two release and test pipelines: - Support testing on the self-deployed environment - CDBD Container version should be compatible with DaoCloud version.
Typically, we need to create a cluster with at least one segment. We need to spike how to create a mini cluster with only one Master node without any segment...