Skip to content

Commit 9647292

Browse files
committed
add call and import
1 parent f415878 commit 9647292

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionCreator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
package com.google.cloud.bigquery.connector.common;
1717

1818
import static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNSUPPORTED;
19+
import static com.google.cloud.bigquery.connector.common.BigQueryUtil.friendlyTableName;
1920
import static java.lang.String.format;
2021

2122
import com.google.cloud.bigquery.TableDefinition;
@@ -100,7 +101,7 @@ public ReadSessionResponse create(
100101
+ "|selectedFields=[{}],"
101102
+ "|filter=[{}]"
102103
+ "|snapshotTimeMillis[{}]",
103-
actualTable.getFriendlyName(),
104+
friendlyTableName(table),
104105
String.join(",", selectedFields),
105106
filter.orElse("None"),
106107
config.getSnapshotTimeMillis().isPresent()

0 commit comments

Comments
 (0)