Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/parsers/static_text_parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
return packet.readLengthCodedString('ascii');
case Types.GEOMETRY:
return packet.parseGeometryValue();
case Types.VECTOR:
return packet.parseVector();

Check warning on line 60 in lib/parsers/static_text_parser.js

View check run for this annotation

Codecov / codecov/patch

lib/parsers/static_text_parser.js#L60

Added line #L60 was not covered by tests
case Types.JSON:
// Since for JSON columns mysql always returns charset 63 (BINARY),
// we have to handle it according to JSON specs and use "utf8",
Expand Down
Loading