Kenji Noguchi

Results 12 comments of Kenji Noguchi

It's interesting idea but Logica uses UDFs (user defined functions) which ClickHouse doesn't support at this moment. The ClickHouse roadmap for 2021 hinted they are considering UDF as executable script...

Recent ClickHouse added UDF. We may be able to use the new functionality while I understand UDF is not a substantial limitation.

I did a bit of research. It seems `reserved` was added when protobuf v3.0.0-beta was released 2 years ago for both proto2 and proto3 syntax. The protoc-2.6.1 can't parse the...

Thanks for the quick response. I simplified my test code. The only difference is that I specified the `rootTypeName` "t2". I'm using the HEAD of the 2.8 branch pulled today....

I am trying to understand the code base, and I saw the type resolver tries to find the name recursively but it's a little hard for me to fix. I...

I just noticed FieldElement or DataType.NamedType class does not have methods that returns qualified name or type unlike TypeElement class that has `.qualifiedName()`. So we still need type resolution for...

I totally understand your thoughts. We are on the same page. There is one thing I would like to try before making invasive changes. The .desc file itself is a...

Thank you. I have one example that I can't figure out. I will post it shortly.

1. The XML files for functions are not a part of server config.xml. 2. By default `user_defined_executable_functions_config` is `/etc/clickhouse-server/*_functoin.xml`. However clickhouse operator tries to merge any XMLs at the path...

I just started working on Blueprint for Responder that is similar to Flask Blueprint. The main ``` import responder from bp1 import simple_page api = responder.API(debug=True) api.register_blueprint(simple_page, url_prefix='/pages') if __name__...