mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-25 03:09:00 -06:00
Fix command line output (#1786)
This commit is contained in:
@@ -41,7 +41,7 @@ func main() {
|
||||
name = flag.String("name", "Row", "struct name. The user-visible name to give to the struct type that will hold each row of data.")
|
||||
columnTypes = flag.String("column-types", "", "a comma-separated list of types representing the desired type of each column. if absent all types default to be String")
|
||||
noProgress = flag.Bool("no-progress", false, "prevents progress from being output if true")
|
||||
destType = flag.String("dest-type", "list", "the destination type to import to. can be 'list' or 'map:<pk>', where <pk> is the name of the column that is a the unique identifier for the column")
|
||||
destType = flag.String("dest-type", "list", "the destination type to import to. can be 'list' or 'map:<pk>', where <pk> is the index position (0-based) of the column that is a the unique identifier for the column")
|
||||
destTypePattern = regexp.MustCompile("^(list|map):(\\d+)$")
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user