web-dev-qa-db-ja.com

移行の失敗:on句があいまいです

初めてmigrateモジュールを使用していて、_db_select_ APIを少し使用しましたが、エラーが発生しています。

古いラベルをdrupal分類法に変換しようとしています。_/admin/content/migrate_ページを参照すると、クエリが正しく実行され、正しい行数が表示されます。移行しましたが、実際にインポートを実行しようとすると、次のエラーが発生します。

ソースプラグインの例外により移行が失敗しました:SQLSTATE [23000]:整合性制約違反:1052 on句の列 'labelId'があいまいです

これが、LabelMigrationクラスにあるコードです。

_$this->map = new MigrateSQLMap($this->machineName,

    array(
        'labelId' => array('type' => 'int', 'not null' => TRUE)
    ),
    MigrateDestinationTerm::getKeySchema()
);
$query = db_select('migrate_account_label', 'l')
         ->fields('l', array('labelId', 'label'))
;

$query->leftJoin('migrate_asset_labels_membership', 'lm', 'l.labelId = lm.labelId');
$query->leftJoin('migrate_asset', 'a', 'lm.assetId = a.assetId');
$query->addExpression('count(*)', 'num');
$query->condition('a.type', 'B');
$query->groupBy('l.labelId');
$query->groupBy('l.label');

$this->source = new MigrateSourceSQL($query);

// Set up our destination - terms in the vocabulary
$this->destination = new MigrateDestinationTerm('article_labels');

$this->addFieldMapping('name', 'label');
$this->addFieldMapping('description')
    ->defaultValue('');
_

leftJoin()呼び出しを削除すると、onステートメントに関するエラーは明らかになくなりますが、labelIdがテーブルエイリアスで常に参照しているため、どのようにあいまいであるかがわかりません。

このエラーの原因となっているアイデアはありますか?それは上部のMigrateSQLMapからのものですか?もしそうなら、どうすればそのlabelIdをエイリアスで参照して明確にすることができますか? _l.labelId_にしてみましたが、うまくいきませんでした。

9
Kenny Wyland

理解した!

MigrateSQLMapでフィールドを定義するときに、フィールドのテーブルエイリアスを設定できます。

$this->map = new MigrateSQLMap($this->machineName,
    array(
        'labelId' => array(
            'type' => 'int',
            'not null' => TRUE,
            'alias' => 'l', // it's the letter small case "L", not the digit 1
        )
    ),
    MigrateDestinationTerm::getKeySchema()
);

'alias' => 'l'は、クエリでlabelIdl.labelIdにします。

30
Kenny Wyland

私は彼がalias1(つまり、ブール値true)に設定していると思いましたが、それが文字列である理由があります-それが実際のエイリアスなので、エイリアスがn'alias' => 'n'。実際には約1時間半かかりました。

1
Joshua Albert