From 2068f263020ea47b2f3f01e326a4e45ce225fc7a Mon Sep 17 00:00:00 2001 From: An Nguyen Date: Thu, 15 May 2025 14:44:04 -0700 Subject: [PATCH] chore: fix bigtable doc typo (#570) Fix bigtable doc typo --- docs/en/resources/tools/bigtable-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/resources/tools/bigtable-sql.md b/docs/en/resources/tools/bigtable-sql.md index 7eb64c8218..bab9fb8370 100644 --- a/docs/en/resources/tools/bigtable-sql.md +++ b/docs/en/resources/tools/bigtable-sql.md @@ -35,7 +35,7 @@ tools: TO_INT64(cf[ 'id' ]) as id, CAST(cf[ 'name' ] AS string) as name, FROM - % s + mytable WHERE TO_INT64(cf[ 'id' ]) = @id OR CAST(cf[ 'name' ] AS string) = @name;