From 16ea614d2b6b863197a83b5d1fbca93d77d437e5 Mon Sep 17 00:00:00 2001 From: Praful Makani Date: Fri, 31 Jan 2020 16:24:56 +0530 Subject: [PATCH] fix: missing fields in tablefield --- .../src/main/java/com/google/cloud/bigquery/BigQuery.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQuery.java b/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQuery.java index 4779c7161..5ece9cb0e 100644 --- a/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQuery.java +++ b/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQuery.java @@ -92,12 +92,14 @@ enum TableField implements FieldSelector { LAST_MODIFIED_TIME("lastModifiedTime"), LOCATION("location"), NUM_BYTES("numBytes"), + NUM_LONG_TERM_BYTES("numLongTermBytes"), NUM_ROWS("numRows"), SCHEMA("schema"), SELF_LINK("selfLink"), STREAMING_BUFFER("streamingBuffer"), TABLE_REFERENCE("tableReference"), TIME_PARTITIONING("timePartitioning"), + RANGE_PARTITIONING("rangePartitioning"), TYPE("type"), VIEW("view");