Skip to content

Commit

Permalink
made suggested change to warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Vexler committed Oct 31, 2022
1 parent 8b4fe71 commit 7f91a9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static HoodieSyncTool instantiateMetaSyncTool(String syncToolClassName,
properties.put(HoodieSyncConfig.META_SYNC_BASE_FILE_FORMAT.key(), baseFileFormat);
String tableName = properties.getString(HoodieSyncConfig.META_SYNC_TABLE_NAME.key());
if (!tableName.equals(tableName.toLowerCase())) {
LOG.warn("Table name \"" + tableName + "\" contains capital letters. Your metastore may auto convert this to lowercase and cause table not found errors.");
LOG.warn("Table name \"" + tableName + "\" contains capital letters. Your metastore may automatically convert this to lower case and can cause table not found errors during subsequent syncs.");
}

if (ReflectionUtils.hasConstructor(syncToolClassName,
Expand Down

0 comments on commit 7f91a9b

Please sign in to comment.