Andrew Kane
Andrew Kane
Hey @alexreinking, happy to help get this on Homebrew. I started a formula [here](https://github.com/ankane/homebrew-core/blob/halide/Formula/halide.rb). Two things that would help are: 1. A `make install` task 2. A new release. The...
Awesome, `cmake --install` works just as well.
Thanks @alexreinking! I've submitted it to Homebrew here: https://github.com/Homebrew/homebrew-core/pull/61246
Homebrew is live 🎉 ```sh brew install halide ```
Hey @foxy-eyed, thanks for the PR! Overall, looks great. Have you tried [clickhouse-activerecord](https://github.com/PNixx/clickhouse-activerecord)? It looks like they both have ~60k downloads, and I think we could use the SQL adapter...
The main benefit of `clickhouse-activerecord` is we wouldn't need to maintain a separate adapter (assuming it works with `SqlAdapter`).
It looks like queries work with `SqlAdapter`. ```yml data_sources: my_source: url: clickhouse://playground:[email protected]:8443/datasets?ssl=true ``` However, `information_schema` isn't available until 21.11.2.2-stable (https://github.com/ClickHouse/ClickHouse/pull/28691), so the queries for tables and the schema would need...
Let me think on this for a bit. I don't really want to support multiple adapters, so it'll likely be 1 or 2.
Let's go with option 2 since date/time columns already work. A few other notes: 1. If `DateTime` objects are converted to `Time` in the adapter, they'll appear in `Blazer.time_zone` in...
Looks great! For times, we'll want Blazer to display them in `Blazer.time_zone` to be consistent with other adapters (rather than the original tz offset), but to do that, they'll need...