From 117b2108e000b2111d5d553456cf37118c88b5ec Mon Sep 17 00:00:00 2001 From: "Heres, Daniel" Date: Sun, 20 Jun 2021 13:58:45 +0200 Subject: [PATCH] Fix predicate / projection options --- src/client.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/client.rs b/src/client.rs index 9d9a236..debc015 100644 --- a/src/client.rs +++ b/src/client.rs @@ -161,6 +161,8 @@ where tro.row_restriction = row_restriction; } + inner.read_options = Some(tro); + let parent_project_id = self.opts.parent_project_id.unwrap_or(self.table.project_id); let parent = format!("projects/{}", parent_project_id); let max_stream_count = self.opts.max_stream_count.unwrap_or_default();