Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Feb 27, 2024
1 parent a8f02b5 commit 7c680bb
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Illuminate/Database/Query/Grammars/MariaDbGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,6 @@

class MariaDbGrammar extends MySqlGrammar
{
/**
* Determine whether to use a legacy group limit clause for MySQL < 8.0.
*
* @param \Illuminate\Database\Query\Builder $query
* @return bool
*/
public function useLegacyGroupLimit(Builder $query)
{
return false;
}

/**
* Compile a "lateral join" clause.
*
Expand All @@ -32,4 +21,15 @@ public function compileJoinLateral(JoinLateralClause $join, string $expression):
{
throw new RuntimeException('This database engine does not support lateral joins.');
}

/**
* Determine whether to use a legacy group limit clause for MySQL < 8.0.
*
* @param \Illuminate\Database\Query\Builder $query
* @return bool
*/
public function useLegacyGroupLimit(Builder $query)
{
return false;
}
}

0 comments on commit 7c680bb

Please sign in to comment.