Skip to content

Commit

Permalink
test_has_with_text_p_step passing
Browse files Browse the repository at this point in the history
  • Loading branch information
criminosis committed Nov 8, 2024
1 parent baccdd5 commit 6626be3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions gremlin-client/src/io/graph_binary_v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,9 @@ impl GraphBinaryV1Ser for &GValue {
bool.to_be_bytes(buf)?;
}
GValue::TextP(text_p) => {
todo!()
// buf.push(BOOLEAN);
// buf.push(VALUE_FLAG);
// text_p.to_be_bytes(buf)?;
buf.push(TEXTP);
buf.push(VALUE_FLAG);
text_p.to_be_bytes(buf)?;
}
GValue::Null => {
//Type code of 0xfe: Unspecified null object
Expand Down

0 comments on commit 6626be3

Please sign in to comment.