gisakuya

Results 9 issues of gisakuya

BulkSynchronize - `ColumnSynchronizeDeleteKeySubsetExpression` feature work with sql server 2008,but not work with mysql 8. It will delete other rows expect inserted. Example code: ```c# class Program { static async System.Threading.Tasks.Task...

BulkDeleteAsync- `DeleteMatchedAndConditionExpression` feature work with sql server 2008,but not work with mysql 8. Similar to https://github.com/zzzprojects/EntityFramework-Extensions/issues/389 Further technical details EF version: 3.1.13 EF Extensions version:3.1.13 Database Pomelo.EntityFrameworkCore.MySql 3.2.4

3.0版本,执行:select timestamp '2022-1-29 12:12:12'+1n ; 返回:1601-06-12 20:32:23.000 ![image](https://user-images.githubusercontent.com/12749301/188597977-6ee542ec-435c-49c6-b368-430b604134e2.png)

bug

希望能够为TIMETRUNCATE 函数增加1n和1y的支持

enhancement

3.0版本,TIMETRUNCATE 结合1d使用,返回的数据里多了8小时 ![image](https://user-images.githubusercontent.com/12749301/188563490-d51c75cc-0fd5-4de3-92ed-bdf05d4533d9.png)

bug

windows版本,启动服务失败。 前端时间运行着,会突然崩溃退出程序,但重新运行就好了。 今天崩溃退出后,重启程序也打不开。报下图错误: ![image](https://user-images.githubusercontent.com/12749301/188346161-8e41dd0a-52ba-4c65-a525-4e1f7bae0890.png)

bug

采用Schemaless模式写入,第一次写入列m1,第二次写入列m2。 2次写入的时间戳是一样的。 第二次写入后会将m1列删除。 2.6 版本不会这样。 下面是3.0版本 ![image](https://user-images.githubusercontent.com/12749301/186120846-8b62ab7c-144f-4e8b-a8e7-0eeb954bfca2.png) 下面是2.6版本 ![image](https://user-images.githubusercontent.com/12749301/186120792-aff2d693-4988-480a-b77b-f0f6de600146.png)

bug

3.0版本,没有授权的用户,能够随意删除其他数据库 下图是使用root账号创建一个test账号和一个otherdb数据库 ![image](https://user-images.githubusercontent.com/12749301/186568882-0912d97c-f2a2-403a-9a2c-3b8a14f42166.png) 下图是使用test账号登录后,能够删除otherdb数据库 ![image](https://user-images.githubusercontent.com/12749301/186568995-e7730235-e676-4649-9a10-980fc76a5ad4.png)

bug

syntax: group |> aggregateWindow, when use with mean|avg|sum,the reponse is very fast,but slow with frist|last。 I note that when use with mean|avg|sum, it will use a pushdown pattern,but frist|last doesn't...