Results 37 comments of vdimir

@kitaisreal So, we probably need to support value `auto` to other types of settings, not just numeric? On the other hand, for enum we can add this option manually (what...

I've checked which types of settings we have. The `SettingFieldNumber` the most important to support 'auto' setting. So, I implemented a wrapper class that adds support of special value so...

Checks are passed. I've upgraded one setting to new type `insert_quorum` and added test to check that `SET insert_quorum = 'auto'` works. Logic behind this setting value will be added...

@SachinSetiya Do you mind if I'll continue this PR? Or if there're some updates from you, we can wait.

> https://s3.amazonaws.com/clickhouse-test-reports/39970/f008b07049399eb440ef663462f85aa2b896cf92/stateless_tests__release__databasereplicated__[2/2].html `02377_majority_insert_quorum_zookeeper_long` ``` 2022-08-25 13:43:33 The query succeeded but the server error '319' was expected (query: INSERT INTO quorum1 VALUES (2, '2018-11-15'); -- { serverError 319 }). 2022-08-25 13:43:33...

@nickitat Tests are green (https://github.com/ClickHouse/ClickHouse/pull/39418/commits/edd3263410dd19cf673dda8ae76f92a5b0140fad) except clang-tidy build (need to fix couple of lines, will push fix later after review with another possible fixes).

> in that moment filtering transform placed over reading from the large table will start to filter incoming rows by the small table's set. everything is correct? @nickitat Yes, it...

> > It has a timeout 3 sec > > Where is that timeout set? @antonio2368 Sorry, it's 60 second timeout set in `expect`: https://github.com/ClickHouse/ClickHouse/blob/8284f4cf8475c500b3e1f08355f005342dc5122f/tests/queries/0_stateless/02360_send_logs_level_colors.sh#L18 And 60 sec should be...

I have no idea how it can happen, because on clickhouse server side we replace all chars except `a-zA-Z0-9_:` in metric name to `_` https://github.com/ClickHouse/ClickHouse/pull/26140 Could please you provide server...

> Hi, how do you build your wasm application ? I compile it with Emscripten `emcc testapp.c -s STANDALONE_WASM -s ERROR_ON_UNDEFINED_SYMBOLS=0 -O2 -s TOTAL_MEMORY=6MB -o testapp.wasm --no-entry`, but actually no...