We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f2799d commit e0b0a66Copy full SHA for e0b0a66
1 file changed
gcloud-java-bigquery/src/main/java/com/google/gcloud/bigquery/FormatOptions.java
@@ -85,6 +85,9 @@ public static FormatOptions datastoreBackup() {
85
* Default options for the provided format.
86
*/
87
public static FormatOptions of(String format) {
88
+ if (format.equals(CSV)) {
89
+ return csv();
90
+ }
91
return new FormatOptions(format);
92
}
93
0 commit comments