Delete unrelated tset file

This commit is contained in:
Zhu Jiekun 2024-09-09 20:12:26 +08:00 committed by GitHub
parent 049ca7e5ce
commit 0fbc18206f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,18 +0,0 @@
package promql
import (
"fmt"
"github.com/VictoriaMetrics/metricsql"
"testing"
)
func TestUserCase(t *testing.T) {
mql := "1 and (0 > 1)"
expr, err := metricsql.Parse(mql)
if err != nil {
t.Fatalf("unexpected error: %s", err)
}
fmt.Println(expr)
e, _ := expr.(*metricsql.NumberExpr)
fmt.Println(e.N)
}