Commit d862a518 by Taylor Otwell

Merge pull request #399 from kbanman/develop

Fix raw table expressions
parents 18f91414 17f7389b
......@@ -35,6 +35,11 @@ abstract class Grammar {
*/
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
......
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