Closed Slach closed 1 day ago
adhoc filters from details doesn't work ;(
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
will fix it as separate issue, i can't propose good solution now ;( https://github.com/Altinity/clickhouse-grafana/issues/678
fix #672