Niwaka

Results 82 comments of Niwaka

Hi, @chinedufn! Can I work on this?

Thanks for your quick reply! >if you have any questions or need any information. I came up with a question. I'm going to add an integration test and a codegen...

In `swift-bridge`, `RustString` conforms to `Vectorizable` by default. So, `swift-bridge` should support `Vec`. Here's an example of generated Swift code: ``` extension RustString: Vectorizable { //... } ``` However, the...

>Ah, it confirms to Vectorizable because we currently generate RustString as an opaque Rust type I see. What is the problem with RustString implemented as an opaque Rust type? Currently,...

I have a simple suggestion. When we want rust to have an ownership, annotate such as: ```rust extern "Rust" { #[swift_bridge(ownership = "rust")] fn get_value()->String; } ``` ```Swift /// Generated...

>were you able to look into this? @DegenTim , I haven't done it yet. If you are interested, I'll leave this to you.

Does `greptimedb` have plans to support `modify` or already have something similar? I'd like to use not only this but also modify: ```sql alter table test_table modify column_name double not...

# Implementation Guide Here's a guide for supporting `#[swift_bridge(Comparable)]` ## Test It's a good idea to start by writing tests. ### Integration test Tests for `Equatable` and `Hashable` might be...

>Feel free to write a guide on how a new contributor can implement this we can label this and label it as a good first issue. (You don't have to,...