takuya kodama

Results 124 comments of takuya kodama

Not sure if this is related, but I noticed the module’s pkg-config file doesn’t include the compute CFLAGS lines: ``` Cflags: @ARROW_COMPUTE_PC_CFLAGS@ Cflags.private: @ARROW_COMPUTE_PC_CFLAGS_PRIVATE@ ``` Without those, the Compute component’s...

I couldn't review this in detail yet, but could the issue described here be related? https://github.com/protocolbuffers/protobuf/issues/21447

🗒️ fix: [eeb7f4d](https://github.com/clear-code/redmine_full_text_search/pull/166/commits/eeb7f4d20306225ffff5ce363ef8dcbb7b0ab06e) In default, Groonga will return only 10 records but it didn't return the expected record ids when the search result was over the limit. ~~Tests are still...

> It seems that some CI jobs are failing. Thank you so much. fix: https://github.com/clear-code/redmine_full_text_search/pull/168 I will fix the following test about [Redmine 5.0 & PostgreSQL & Ruby 3.0](https://github.com/clear-code/redmine_full_text_search/actions/runs/14164033981/job/39674095903?pr=166#logs) in...

@suketa May I try to implement this issue step by step if you don't have the plan to implement it soon?

@suketa Thank you so much. I'd like to know what kind of API you are expecting for retrieving a column’s logical type. Could you share your thoughts with me? I'm...

Thank you for sharing your idea. I now understand the concept behind implementing duckdb_logical_column_type. I’ll proceed with your following suggested approach step by step. ```ruby decimal_col.logical_type #=> DuckDB::LogicalType Ruby object...

I would like to proceed with implementing the `DuckDB::LogicalType` wrapper step by step as outlined below: - [x] Implement the `DuckDB::LogicalType` Class - For Each Logical Type, Perform the Following:...

I've updated the current situation as follows. ref: https://duckdb.org/docs/stable/clients/c/api.html#logical-type-interface - [ ] duckdb_logical_type duckdb_create_logical_type(duckdb_type type); - [x] char *duckdb_logical_type_get_alias(duckdb_logical_type type); - [x] void duckdb_logical_type_set_alias(duckdb_logical_type type, const char *alias); - [...

@suketa Could you share your thoughts on implementing bindings for the `duckdb_create_*` functions? I don’t think we need to wrap them right now, since all logical types currently come straight...