From 6626be398edde332bbc4640a6dde31ba42f981c1 Mon Sep 17 00:00:00 2001 From: Allan Clements Date: Fri, 8 Nov 2024 16:04:26 -0600 Subject: [PATCH] test_has_with_text_p_step passing --- gremlin-client/src/io/graph_binary_v1.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gremlin-client/src/io/graph_binary_v1.rs b/gremlin-client/src/io/graph_binary_v1.rs index 2e853da..a0c1e50 100644 --- a/gremlin-client/src/io/graph_binary_v1.rs +++ b/gremlin-client/src/io/graph_binary_v1.rs @@ -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