Fix prefixing raw tables
This commit is contained in:
parent
18f91414bb
commit
17f7389bc5
|
@ -35,6 +35,11 @@ public function __construct(Connection $connection)
|
|||
*/
|
||||
public function wrap_table($table)
|
||||
{
|
||||
if ($table instanceof Expression)
|
||||
{
|
||||
return $this->wrap($table);
|
||||
}
|
||||
|
||||
$prefix = '';
|
||||
|
||||
// Tables may be prefixed with a string. This allows developers to
|
||||
|
|
Loading…
Reference in New Issue