jp0317 commented on code in PR #8898:
URL: https://github.com/apache/hudi/pull/8898#discussion_r1237202198
##########
hudi-gcp/src/main/java/org/apache/hudi/gcp/bigquery/BigQuerySyncTool.java:
##########
@@ -82,6 +83,14 @@ public void syncHoodieTable() {
}
}
+ private boolean tableExists(HoodieBigQuerySyncClient bqSyncClient, String
tableName) {
+ if (bqSyncClient.tableExists(tableName)) {
+ LOG.info(tableName + " already exists");
Review Comment:
not necessary, it's just to avoid the redundant code logging table already
exists.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]