由于某种原因,我的代码在influxdb数据库中创建了一个名为“>”的系列。我需要删除该系列。
val query = refUsersCollection
.whereEqualTo("hasLocation", true)
query.get().addOnSuccessListener {
// use the result
}
我尝试了
> show series
key
---
>,Test_Prog=python,User=unknown
Bazooka,Test_Name=helloworld,Test_Prog=C,User=unknown
但没有任何效果。此外,我什至无法访问该系列。
> drop series from ">"
>
> drop series from "\>"
ERR: error parsing query: found \>, expected identifier at line 1, char 20
> drop series from "\\>"
>
> drop series from "\">\""
>
还有其他方法可以访问/删除此系列吗?
答案 0 :(得分:0)
尝试DROP MEASUREMENT ">"
这是“>”测量值