Skip to content

Commit 5036d22

Browse files
authored
Merge pull request #2 from nicklayb/fixQueryTable
Fixed query table error
2 parents 59f75ce + be98e7d commit 5036d22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Import.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public function getSourceRows($table)
169169
$query = DB::connection($this->sourceConnection)
170170
->table($table)
171171
->select($this->getSelects($table));
172-
return $this->queryTable($query)->get();
172+
return $this->queryTable($query, $table)->get();
173173
}
174174

175175
/**

0 commit comments

Comments
 (0)