Dario Heinisch

Results 81 comments of Dario Heinisch
trafficstars

@ruslandoga can you also add a test for inserting the data? I am wondering if we will run into the same issue as https://github.com/ClickHouse/clickhouse-java/issues/1232 I personally prefer `type` & `name`...

Sorry bad phrasing, more like how would I even insert into this column with ecto: ```elixir defmodule SomeSchema do use Ecto.Schema @primary_key false schema "table" do field :foo, Ch, type:...

```sql create table table_test_agg (foo AggregateFunction(argMin, UInt8, DateTime)) Engine = Memory; insert into table_test_agg (foo) Values (arrayReduce('argMinState', [1], [now()])); ``` ------ on a different note: `AggregateFunction` & `SimpleAggregateFunction` are super...

I am wondering whether the data can be encoded in a different way because the java issues states: > On the other hand, in order to support more AggregateFunction types,...

Yeah I don't think `as` is needed right now ------------------ Do you think creating insert queries such as ```elixir """ INSERT INTO test_insert_aggregate_function SELECT uid, updated, arrayReduce('argMaxState', [name], [updated]) FROM...

yeah all of them can be used via `arrayReduce` + `input`

Oh that is sick!!! Let me test that today/tomorrow, I will ping you but just from reading over the code it looks pretty incredible easy to work with!

likely not getting to it today but should be getting to it tomorrow, sorry about that