hi. I have a question about Signoz. The log contai...
# support
u
hi. I have a question about Signoz. The log contains 'contains' and 'like' as search filters, but like is used in Clickhouse queries in Go anyway, so why are they separated? Is there a performance difference?
s
No performance difference. It enables the users to write their own expression for like using the
LIKE
whereas the input for
CONTAINS
is regular string which gets converted to
x LIKE '%...%'
.
u
Thanks for your answer.👍