pillar
pillar copied to clipboard
Add tuple conversion support
Would it make sense to add elixir to clickhouse tuple support? I was able to get it working locally by adding
def convert(param) when is_tuple(param) do
values = param
|> Tuple.to_list()
|> Enum.map_join(",", &convert/1)
"(#{values})"
end
If there is no such check, then there is no problem.
Would you add this conversion?
Is solving in https://github.com/balance-platform/pillar/pull/63
Solved and added in 0.36.0