Index: sf_import.drush.inc
===================================================================
--- sf_import.drush.inc (revision 3042)
+++ sf_import.drush.inc (working copy)
@@ -232,8 +232,11 @@
   if ($check_date && !in_array('LastModifiedDate', $fields)) {
     $fields[] = 'LastModifiedDate';
   }
+  if (!in_array('Id', $fields)) {
+    $fields[] = 'Id';
+  }
   $soql = "
-    SELECT Id, " . implode(', ', $fields) . "
+    SELECT " . implode(', ', $fields) . "
     FROM   " . $map->salesforce . "
   ";
   if ($where) {
@@ -248,7 +251,7 @@
 
   // Prepare for import
   $type = $map->drupal;
-  if (strpos($type, 'node_') === 1) {
+  if (strpos($type, 'node_') === 0) {
     $type = 'node';
   }
   $function = 'sf_' . $type . '_import';

