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
With #40 metricsql package now supports quoted metric names {"metric_name"}. It also allows using arbitrary UTF8 chars within the quotes: {"3foo3"}. However, the prettify functionality would transform {"3foo3"} in \3foo\3.
It would be great, for user's convenience, to keep quotes instead of escaping. The expected test cases for prettyfying are the following:
{"metric"} => metric
{"3metric"} => {"3metric"}
{"met\"ric"} => {"met\"ric"}
The text was updated successfully, but these errors were encountered:
With #40 metricsql package now supports quoted metric names
{"metric_name"}
. It also allows using arbitrary UTF8 chars within the quotes:{"3foo3"}
. However, the prettify functionality would transform{"3foo3"}
in\3foo\3
.It would be great, for user's convenience, to keep quotes instead of escaping. The expected test cases for prettyfying are the following:
{"metric"}
=>metric
{"3metric"}
=>{"3metric"}
{"met\"ric"}
=>{"met\"ric"}
The text was updated successfully, but these errors were encountered: