1

基本上我们想将我们的 drupal 6 站点的一部分移动到我们的 drupal 7 构建中。使用迁移模块。在迁移 155 个节点及其注释和分类时(2 个词汇,一个是固定的,另一个是逗号分隔的)最后 30 个失败给我这个错误:

291 Error PDOException: SQLSTATE[HY000]: General error: 1366 Incorrect integer value: '' for column 'tid' at row 1: INSERT INTO {taxonomy_index} (nid, tid, sticky, created) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3); Array ( [:db_insert_placeholder_0] => 3057 [:db_insert_placeholder_1] => [:db_insert_placeholder_2] => 0 [:db_insert_placeholder_3] => 1282050381 ) in taxonomy_field_insert() (line 1675 of /u01/facebase/drupal-7.0/modules/taxonomy/taxonomy.module).

291 错误 SQLSTATE[HY000]: 一般错误: 1366 不正确的整数值: '' for column 'tid' at row 1

我正在使用此查询迁移我的条款:

$query = db_select("$this->_db.term_data", 'td')
  ->fields('td', array('tid', 'name', 'weight'))
  ->condition('v.vid', 7);
  $query->innerJoin("$this->_db.vocabulary", 'v', 'td.vid=v.vid');

我对 2 个词汇表执行此操作,然后仅映射名称、格式和权重。然后我在迁移节点时使用这个查询:

$query = db_select("$this->_db.node", 'n')
  ->fields('n', array('nid', 'vid', 'type', 'title', 'uid', 'status', 'created', 'changed', 'comment'))
  ->fields('tn', array('tid'))
  ->fields('nr', array('title', 'body', 'teaser'))
  ->condition('n.type', 'dev_content');

  $query->leftJoin("$this->_db.term_node", 'tn', 'tn.vid =n.vid');
  $query->leftJoin("$this->_db.node_revisions", 'nr', 'nr.vid = n.vid');
  $query->addExpression('GROUP_CONCAT(DISTINCT tn.tid)', 'term_list');
  $query->groupBy('n.nid');

然后我为每个词汇表映射 term_list,如下所示:

$this->addFieldMapping('field_dev_tags', 'term_list')
 ->separator(',')
 ->sourceMigration('DevCenterTerm')
 ->arguments(array('source_type' => 'tid'));

$this->addFieldMapping('field_dev_category', 'term_list')
 ->separator(',')
 ->sourceMigration('DevCenterTermPrep')
 ->arguments(array('source_type' => 'tid'));

我知道这是由于条款而发生的,因为当我不映射 term_list 时,所有节点都会被创建,但仅此而已。有任何想法吗?

4

1 回答 1

0

这是那些没有分配给它们的分类的节点的问题吗?如果是这种情况,请尝试向分类字段映射添加默认值。

    $this->addFieldMapping('field_dev_category', 'term_list')
 ->separator(',')
 ->sourceMigration('DevCenterTermPrep')
 ->arguments(array('source_type' => 'tid'))->defaultValue(12);

在 beer.inc 示例中,注释中记录了这一点:

您也可以同时使用两者 - 如果除了源字段之外还提供了默认值,则默认值将应用于源字段为空或 NULL 的任何行。

于 2011-07-26T15:40:52.243 回答