There is a bug in the mappers/taxonomy.inc code on line 113:

$query = new EntityFieldQuery();
  $query->entityCondition('entity_type', 'taxonomy_term')
    ->entityCondition('bundle', $cache['allowed_vocabularies'][$target])
    ->range(0, 1);

This causes "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'vocabulary_machine_name' in 'where clause'".

CommentFileSizeAuthor
#3 feeds-taxonomy_error-1985782-3.patch668 bytescgoffin
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

swati.karande’s picture

Can you let us know the steps to replicate this issue?
Where you got such type of error?

twistor’s picture

What version of Drupal core are you running?

cgoffin’s picture

Here's a patch that fixes this problem.

ja09’s picture

Priority: Major » Minor

I had the same issue after updating from 7.x-2.0-alpha7 to alpha8. I was running an older version of Drupal (7.14). Issue solved when I upgraded to 7.22.

For this reason, I've changed the priority to minor, and someone with more knowledge can take over from here.

Shyghar’s picture

I had the same problem but with #3 fix I resolved ^^
Thank you