Ceyhun Kerti

Results 10 comments of Ceyhun Kerti

this issue appears again after the last commit that modifies `schema_query.py`

this is becouse request fails. checking it .... [here is the fix](https://github.com/bluecolor/octopus/commit/5d85812298fe6904d7e900936c78ad4f56774db9)

It could be something related with the order of the chained expressions; ```elixir # ❗ doesn't work like mentioned in the issue. df = DF.new(a: ["a", "b", "c"]) |> DF.group_by("a")...

how about something like; ```sh my-tap --config config.json | tee >(singer-check-tap)>(my-target) ```

AFAIK, this is also not supported on `polars python API` and back in days when we needed it we were falling back one of the two options below: - Use...

Hey, thanks for the quick feedback, I saw it, but I believe it's restricted to a `single df` right?. `SQLContext` operates on any number of dfs. as if they are...

hmm, thinking loudly 🤔 to understand backend independence. - We say `DF.sql/3` is backend independent. - When we call it using polars backend and get a `df` I believe it...

> @josevalim You read my mind! Perhaps even: > > ```elixir > DF.sql(%{foo: df1, bar: df2, baz: df3}, "select") > ``` > > to prevent duplicates? > > Also I...

Also, [this referenced issue here](https://github.com/elixir-explorer/explorer/issues/969#issuecomment-2375359282) makes me think. those; In the issue author mentioned in order to achieve complex `and/or` logic one can do the following with the api ```elixir...

> Today infer_schema_length has an awkward API, since setting it to `nil` is used to infer all columns and `0` is used to disable it. > > I propose: >...