diff --git a/Classes/Core/Functional/Framework/DataHandling/DataSet.php b/Classes/Core/Functional/Framework/DataHandling/DataSet.php index fbcffd77..6f0ff93b 100644 --- a/Classes/Core/Functional/Framework/DataHandling/DataSet.php +++ b/Classes/Core/Functional/Framework/DataHandling/DataSet.php @@ -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 {