From 3aa58b050a8e52af104f6c13b25049da7ddb66e3 Mon Sep 17 00:00:00 2001 From: Justin Date: Mon, 30 Sep 2024 10:22:48 -0400 Subject: [PATCH] pass the option --- bigquery/table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/table.go b/bigquery/table.go index 1f6e45e8c0f2..012d58aba790 100644 --- a/bigquery/table.go +++ b/bigquery/table.go @@ -984,7 +984,7 @@ func WithClientProject() TableReadOption { // Read fetches the contents of the table. func (t *Table) Read(ctx context.Context, opts ...TableReadOption) *RowIterator { - return t.read(ctx, fetchPage) + return t.read(ctx, fetchPage, opts...) } func (t *Table) read(ctx context.Context, pf pageFetcher, opts ...TableReadOption) *RowIterator {