Fix newline escaping in line protocol (#3992)
(cherry picked from commit e4f8a82ee6)
This commit is contained in:
committed by
Daniel Nelson
parent
5f0fbc7d30
commit
b5babc3f00
@@ -142,7 +142,7 @@ fieldfloat =
|
||||
fieldinteger =
|
||||
(integer 'i') >begin %integer;
|
||||
|
||||
fieldunsigned =
|
||||
fieldunsigned =
|
||||
(unsigned 'u') >begin %unsigned;
|
||||
|
||||
false =
|
||||
@@ -155,7 +155,7 @@ fieldbool =
|
||||
(true | false) >begin %bool;
|
||||
|
||||
fieldstringchar =
|
||||
[^\\"] | '\\' [\\"];
|
||||
[^\n\f\r\\"] | '\\' [\\"];
|
||||
|
||||
fieldstring =
|
||||
fieldstringchar* >begin %string;
|
||||
|
||||
Reference in New Issue
Block a user