ZHANG Hao
ZHANG Hao
**Describe the feature you'd like** One big difference between disk table and mem table is that disk table only allows one unique key per index. For example, if the index...
* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...) Fix #1673 #2307 has to be fixed before this PR work correctly.
**Bug Description** Now we create the `pre-aggr` table before `CreateProcedure`. If `CreateProcedure` fails, we didn't delete the related pre-aggr tables. **Expected Behavior** We should delete the `pre-aggr` table if `CreateProcedure`...
two minor bugs in Makefile: - `make clean` doesn't clean the swig genereated files - `HYBRIDSE_CMAKE_DEPS_FLAGS := -DHYBRIDSE_TESTING_ENABLE=OFF -DEXAMPLES_ENABLE=OFF -DPYSDK_ENABLE=OFF -DJAVASDK_ENABLE=OFF` these options are cached, simply overriding cannot change these...
Bug ---- Unrestrained #pragma HLS DEPENDENCE in VTA core waiving all loop-carried dependencies, causing wrong results in 32x32 configuration Solution ---- make acc dependence configurable, and also do corresponding checking...
**Describe the feature you'd like** Currently only support `desc table_name;` We may need the support of `desc db_name.table_name;` format. **Additional context** Add any other context or screenshots about the feature...
**Bug Description** Add the restriction on the [long window deployment docs](https://github.com/4paradigm/OpenMLDB/blob/main/docs/zh/reference/sql/deployment_manage/DEPLOY_STATEMENT.md#%E9%99%90%E5%88%B6%E6%9D%A1%E4%BB%B6): - It requires the data is loaded in the order of `timestamp` column in order to get the best...
**Describe the feature you'd like** If data is loaded into the table before the deployment with long window option, we should build the pre-aggregation table on the fly (asynchronous). **Additional...
**Bug Description** Currently long window op doesn't support the case where there exists data in the base table. It should fail upon deployment in case something unexpected happen. **Expected Behavior**...
**Bug Description** Currently the `LongWindowOptimized` pass just select the first one pre-aggr table and use it. **Expected Behavior** Two possible solutions: - only create one pre-aggr table if all the...