@@ -32,7 +32,7 @@ public class ToolOptions {
32
32
private String sinkStagingTableAlias ;
33
33
private String sinkStagingSchema ;
34
34
private String sinkColumns ;
35
- private String sinkFileformat ;
35
+ private String sinkFileFormat ;
36
36
private Boolean sinkDisableEscape = false ;
37
37
private Boolean sinkDisableIndex = false ;
38
38
private Boolean sinkDisableTruncate = false ;
@@ -476,7 +476,7 @@ private void loadOptionsFile() throws IOException {
476
476
setBandwidthThrottling (prop .getProperty ("bandwidth.throttling" ));
477
477
setQuotedIdentifiers (Boolean .parseBoolean (prop .getProperty ("quoted.identifiers" )));
478
478
setSourceFileFormat (prop .getProperty ("source.file.format" ));
479
- setSinkFileformat (prop .getProperty ("sink.file.format" ));
479
+ setSinkFileFormat (prop .getProperty ("sink.file.format" ));
480
480
setSentryDsn (prop .getProperty ("sentry.dsn" ));
481
481
482
482
// Connection params
@@ -891,7 +891,7 @@ public String toString() {
891
891
",\n \t sourceConnectionParams=" + sourceConnectionParams +
892
892
",\n \t sinkConnectionParams=" + sinkConnectionParams +
893
893
",\n \t sourceFileFormat='" + sourceFileFormat + '\'' +
894
- ",\n \t sinkFileformat='" + sinkFileformat + '\'' +
894
+ ",\n \t sinkFileformat='" + sinkFileFormat + '\'' +
895
895
'}' ;
896
896
}
897
897
@@ -938,17 +938,17 @@ private void setSourceFileFormatNotNull(String fileFormat) {
938
938
this .sourceFileFormat = fileFormat ;
939
939
}
940
940
941
- public String getSinkFileformat () {
942
- return sinkFileformat ;
941
+ public String getSinkFileFormat () {
942
+ return sinkFileFormat ;
943
943
}
944
944
945
- public void setSinkFileformat (String sinkFileformat ) {
946
- this .sinkFileformat = sinkFileformat ;
945
+ public void setSinkFileFormat (String sinkFileFormat ) {
946
+ this .sinkFileFormat = sinkFileFormat ;
947
947
}
948
948
949
949
private void setSinkFileFormatNotNull (String fileFormat ) {
950
950
if (fileFormat != null && !fileFormat .isEmpty ())
951
- this .sinkFileformat = fileFormat ;
951
+ this .sinkFileFormat = fileFormat ;
952
952
}
953
953
954
954
public String getSentryDsn () {
0 commit comments