You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
createCmd.Flags().String(flag.OSSAccessKeySecret, "", "The access key secret of the OSS.")
730
745
createCmd.Flags().String(flag.ParquetCompression, "ZSTD", fmt.Sprintf("The parquet compression algorithm. One of %q.", export.AllowedExportParquetCompressionTypeEnumEnumValues))
731
746
createCmd.Flags().String(flag.DisplayName, "", "The display name of the export. (default \"SNAPSHOT_<snapshot_time>\")")
747
+
createCmd.Flags().StringSlice(flag.Partitions, nil, "Filter the exported partition table(s) with specified partition(s).")
flag.TableWhere: "Optional, input the where clause which will apply to all filtered tables. Example: id > 10",
41
41
flag.CSVSeparator: "Input the CSV separator: separator of each value in CSV files, skip to use default value (,)",
42
42
flag.CSVDelimiter: "Input the CSV delimiter: delimiter of string type variables in CSV files, skip to use default value (\"). If you want to set empty string, please use non-interactive mode",
43
43
flag.CSVNullValue: "Input the CSV null value: representation of null values in CSV files, skip to use default value (\\N). If you want to set empty string, please use non-interactive mode",
@@ -46,6 +46,7 @@ var inputDescription = map[string]string{
46
46
flag.OSSURI: "Input your OSS URI in oss://<bucket>/<path> format",
47
47
flag.OSSAccessKeyID: "Input your OSS access key id",
48
48
flag.OSSAccessKeySecret: "Input your OSS access key secret",
49
+
flag.Partitions: "Optional, input the partitions (comma separated) which will apply to all filtered tables. Example: p1,p2. It is useful when you want to export specific partitions from a partition table.",
0 commit comments