diff --git a/Classes/Core/Functional/Framework/DataHandling/DataSet.php b/Classes/Core/Functional/Framework/DataHandling/DataSet.php index 787b9018..0fbdbf60 100644 --- a/Classes/Core/Functional/Framework/DataHandling/DataSet.php +++ b/Classes/Core/Functional/Framework/DataHandling/DataSet.php @@ -73,7 +73,7 @@ public static function import(string $path): void $connection = GeneralUtility::makeInstance(ConnectionPool::class)->getConnectionForTable($tableName); $platform = $connection->getDatabasePlatform(); // @todo Check if we can use the cached schema information here instead. - $tableDetails = $connection->createSchemaManager()->listTableDetails($tableName); + $tableDetails = $connection->createSchemaManager()->introspectTable($tableName); foreach ($dataSet->getElements($tableName) as $element) { // Some DBMS like postgresql are picky about inserting blob types with correct cast, setting // types correctly (like Connection::PARAM_LOB) allows doctrine to create valid SQL