Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Classes/Core/Functional/Framework/DataHandling/DataSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ public static function import(string $path): void
$types[] = $columnType->getBindingType();
}
// Insert the row
$connection->insert($tableName, $element, $types);
$connection->insert($tableName, $element, $types, true);
}
Testbase::resetTableSequences($connection, $tableName);
}
}

/**
* Main entry method: Get at absosulete (!) path to a .csv file, read it and return an instance of self
* Main entry method: Get at absolute (!) path to a .csv file, read it and return an instance of self
*/
public static function read(string $fileName, bool $applyDefaultValues = false, bool $checkForDuplicates = false): self
{
Expand Down
Loading