Commit 17f7389b by Kelly Banman

Fix prefixing raw tables

parent 18f91414
...@@ -35,6 +35,11 @@ abstract class Grammar { ...@@ -35,6 +35,11 @@ abstract class Grammar {
*/ */
public function wrap_table($table) public function wrap_table($table)
{ {
if ($table instanceof Expression)
{
return $this->wrap($table);
}
$prefix = ''; $prefix = '';
// Tables may be prefixed with a string. This allows developers to // Tables may be prefixed with a string. This allows developers to
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment