From 66161005ae79b2f5effd393e3ae63ed3101f5879 Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Sat, 1 Feb 2025 17:47:58 -0500 Subject: [PATCH] Remove testing changes Signed-off-by: Matt Lord --- examples/local/vstream_client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/local/vstream_client.go b/examples/local/vstream_client.go index bc28a3a6ee3..ab00f83871d 100644 --- a/examples/local/vstream_client.go +++ b/examples/local/vstream_client.go @@ -38,7 +38,7 @@ import ( */ func main() { ctx := context.Background() - streamCustomer := false + streamCustomer := true var vgtid *binlogdatapb.VGtid if streamCustomer { vgtid = &binlogdatapb.VGtid{ @@ -64,7 +64,7 @@ func main() { filter := &binlogdatapb.Filter{ Rules: []*binlogdatapb.Rule{{ Match: "customer", - Filter: "select * from customer where customer_id > 5 and customer_id < 10", + Filter: "select * from customer", }}, } conn, err := vtgateconn.Dial(ctx, "localhost:15991")