mirror of https://gitee.com/bigwinds/arangodb
fix default separator
This commit is contained in:
parent
78cb376b89
commit
33b40e3bf6
|
@ -237,9 +237,8 @@ void ImportFeature::start() {
|
|||
}
|
||||
|
||||
if (_separator.empty()) {
|
||||
if (_typeImport == "csv") {
|
||||
_separator = ",";
|
||||
} else if (_typeImport == "tsv") {
|
||||
_separator = ",";
|
||||
if (_typeImport == "tsv") {
|
||||
_separator = "\\t";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue