dennis zhuang
dennis zhuang
I think we can close this issue now.
I take this issue, it's easy to implement it.
> @killme2008 > > I'm interested in the issue. > > This lines seems to result in the bug. In creating a logical table, this is executed. > > https://github.com/GreptimeTeam/greptimedb/blob/ff4c153d4bba17a17e9f422eeb392f5a44f6d0d0/src/common/meta/src/ddl/create_logical_tables/metadata.rs#L52...
> I want to have a try for PostgreSQL. Cool, thank you.
> @killme2008 I have a problem. Different from mysql crate, no type of PostgreSQL error codes found in pgwire crate. So in order to map StatusCode, I need to define...
Or maybe a function like `fn status_code_to_pg_error(status: StatusCode) -> &str` is enough.
Another case https://github.com/GreptimeTeam/greptimedb/actions/runs/9846576576/job/27184816015 @WenyXu
> maybe we should first add a new enum member for `Kind` in greptime-proto for `expr_factory` to use. Yes. A first step.
Don't add new syntax, keep using `modify column [set | unset]`.
After discussing and investigating, decide to use the following syntax: ```sql alter table set options(ttl='30d', write_buffer_size='32mb'); ``` The syntax for options is the same as that for creating tables. The...