Gian Merlino
Gian Merlino
@gszadovszky I'm trying to switch the codecs to use `ParquetProperties#getPageSizeThreshold()` as the initial buffer size but am running into some issues with seeing how to structure that. It looks like...
> In this case I wouldn't spend to much time on actually passing the configured value, and as you said, it might not even possible because of the caching. >...
Hi- would it be possible to commit this, now that it's approved?
What's the openrewrite stuff for? It looks like that is also currently associated with a failing static check.
Ah, I see the `rewrite.yml` with the config. Seems neat. I see that the static failure is about too many `UnnecessaryThrows`, maybe we should remove that rule?
@kgyrtkirk, > I see that the static failure is about too many UnnecessaryThrows, maybe we should remove that rule? How was this resolved? I don't see it failing anymore. >...
I've reviewed some of the initial PRs and I like the direction this is going. As to this piece: > The more traditional way to achieve this is with materialized...
I think this is possibly the same issue, or at least a closely related issue, as #17951. I ran both queries with `"plannerStrategy": "DECOUPLED"` and got the correct plan and...
Btw, here's the SQL to load the table: ```sql REPLACE INTO "values" OVERWRITE ALL SELECT TIME_PARSE(ts) AS __time, "value" FROM (VALUES('2025-04-24 21:20:10', 1), ('2025-04-24 21:21:10', 2), ('2025-04-24 21:22:10', 3)) AS...