Deleting the influxdb entries which have some value for particular field and field exist in the entry.
delete from stats_io where _field='read_val'
This query doesn't throw any error and it doesn't delete any entries as well. But the field exist in all entries in influxdb.
delete from stats_io where _field="read_val"
Changing _field value from single to double quote ends up in an error.
ERR: shard 517: fields not supported in WHERE clause during deletion
I refer the documentation for delete predicate and it's possible to delete based on field exist. I am not sure why this error is happening ?
Influxdb-Version: 1.3.1
Any suggestion in figuring out the error is much appreciated. Thanks!