We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8680159 commit 7059a8eCopy full SHA for 7059a8e
influxdb/src/query/line_proto_term.rs
@@ -107,9 +107,9 @@ mod test {
107
assert_eq!(FieldValue(&Type::SignedInteger(0)).escape(), r#"0i"#);
108
assert_eq!(FieldValue(&Type::SignedInteger(83)).escape(), r#"83i"#);
109
110
- assert_eq!(FieldValue(&Type::Text("".into())).escape(), r#""#);
+ assert_eq!(FieldValue(&Type::Text("".into())).escape(), r#""""#);
111
assert_eq!(FieldValue(&Type::Text("0".into())).escape(), r#""0""#);
112
- assert_eq!(FieldValue(&Type::Text("\"".into())).escape(), r#"\""#);
+ assert_eq!(FieldValue(&Type::Text("\"".into())).escape(), r#""\"""#);
113
assert_eq!(
114
FieldValue(&Type::Text(r#"locat"\ ,=ion"#.into())).escape(),
115
r#""locat\"\\\ \,\=ion""#
0 commit comments