We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10876c6 commit 9e87777Copy full SHA for 9e87777
influxdb/src/query/line_proto_term.rs
@@ -62,7 +62,7 @@ impl LineProtoTerm<'_> {
62
Float(v) => format!(r#""{}""#, v.to_string()),
63
SignedInteger(v) => format!(r#""{}""#, v),
64
UnsignedInteger(v) => format!(r#""{}""#, v),
65
- Text(v) => format!(r#""{}""#, Self::escape_any(v, &*SLASHES)),
+ Text(v) => format!(r#"{}"#, Self::escape_any(v, &*SLASHES)),
66
}
67
68
0 commit comments