X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FImport%2FDataSource%2FSQL.php;h=d552d45103d9dc7a66d049729ad0ee2a8550a441;hb=655da1f919af8318da84d80422841599c332024d;hp=78b20839f9be3f4bb87f7a2799c143d1076af521;hpb=4f9ab9f05620187330813be73e1e25f82f614234;p=civicrm-core.git diff --git a/CRM/Import/DataSource/SQL.php b/CRM/Import/DataSource/SQL.php index 78b20839f9..d552d45103 100644 --- a/CRM/Import/DataSource/SQL.php +++ b/CRM/Import/DataSource/SQL.php @@ -84,11 +84,9 @@ class CRM_Import_DataSource_SQL extends CRM_Import_DataSource { $tableName = $table->getName(); $table->createWithQuery($this->getSubmittedValue('sqlQuery')); - // Get the names of the fields to be imported. Any fields starting with an - // underscore are considered to be internal to the import process) + // Get the names of the fields to be imported. $columnsResult = CRM_Core_DAO::executeQuery( - 'SHOW FIELDS FROM ' . $tableName . " - WHERE Field NOT LIKE '\_%'"); + 'SHOW FIELDS FROM ' . $tableName); $columnNames = []; while ($columnsResult->fetch()) {