You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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*FROMdefault.test_logs_with_complex_labelsWHERE (_time >= toDateTime64(1732609375, 3)) AND (_time <= toDateTime64(1732782175, 3)) AND (_map ='{"map_key0":"map_value0"}')
FORMAT JSON
works with different signle quotes serialization
SELECT*FROMdefault.test_logs_with_complex_labelsWHERE (_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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: