Skip to content

Commit 9e87777

Browse files
committed
Fix improper quoting on tag values when the value was text
1 parent 10876c6 commit 9e87777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

influxdb/src/query/line_proto_term.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl LineProtoTerm<'_> {
6262
Float(v) => format!(r#""{}""#, v.to_string()),
6363
SignedInteger(v) => format!(r#""{}""#, v),
6464
UnsignedInteger(v) => format!(r#""{}""#, v),
65-
Text(v) => format!(r#""{}""#, Self::escape_any(v, &*SLASHES)),
65+
Text(v) => format!(r#"{}"#, Self::escape_any(v, &*SLASHES)),
6666
}
6767
}
6868

0 commit comments

Comments
 (0)