Fritz Larco

Results 128 comments of Fritz Larco

@jovezhong do you mind sharing some creds with me to test? I actually had to patch iceberg-go to get it to work with AWS S3 Tables and Cloudflare R2 Data...

Thanks for the details. This is worth a look again, but this decision was due to clickhouse storing bool as an int, which caused errors in sling: https://clickhouse.com/docs/sql-reference/data-types/boolean This file...

Sling is actually doing the casting, but [types_general_to_native.tsv](https://github.com/slingdata-io/sling-cli/blob/main/core/dbio/templates/types_general_to_native.tsv) maps a "bool" as `Nullable(String)`. Using `string` was the simplest choice for keeping consistency across all connectors.

Yes I see what you mean, you're wanting to provide the `native` DDL type, when in actuality the `columns` input allows you to specify the `generic` type, which sling then...

@mastermel nice, I'll take a look at implementing this. The big issue in my mind is to not break existing workloads writing into clickhouse. So there needs to be some...

OK, I went ahead and knocked this one out. See https://github.com/slingdata-io/sling-cli/commit/845005b0e6927b29ebd0401ea523035a6c4bdb8a Next release is targeted for end of next week. Closing, feel free to test with the [dev build](https://github.com/slingdata-io/sling-cli?tab=readme-ov-file#automated-dev-builds) and...

You can try it (`sling mcp`), but it's still baking, the prompts need work. Coming in `v1.5`.

@fdcastel created a PR to get you started: https://github.com/slingdata-io/sling-cli/pull/611 See comments there.

Thanks, the `goreleaser` files run on their respective machine runners during build, so it's a bit more complex. See [here](https://github.com/slingdata-io/sling-cli/blob/main/.github/workflows/build-release.yml#L149-L227). Do you have experience releasing multi-arch linux builds to homebrew?...