adhoc filters from details doesn't work ;(
we need to option to allow enable and disable filters for complex clickhouse types like Map/Object etc.


filters works but got error on clickhouse level

doesn't work
SELECT *
FROM default.test_logs_with_complex_labels
WHERE (_time >= toDateTime64(1732609375, 3)) AND (_time <= toDateTime64(1732782175, 3)) AND (_map = '{"map_key0":"map_value0"}')
FORMAT JSON
works with different signle quotes serialization
SELECT *
FROM default.test_logs_with_complex_labels
WHERE (_time >= toDateTime64(1732609375, 3)) AND (_time <= toDateTime64(1732782175, 3)) AND (_map = '{\'map_key0\':\'map_value0\'}')
FORMAT JSON
but this is clickhouse specific serialization, i don't know how to properly implement it for all clickhouse related invariants
also doesn't work dropdown selection


adhoc filters from details doesn't work ;(
we need to option to allow enable and disable filters for complex clickhouse types like Map/Object etc.
filters works but got error on clickhouse level

doesn't work
works with different signle quotes serialization
but this is clickhouse specific serialization, i don't know how to properly implement it for all clickhouse related invariants
also doesn't work dropdown selection

