Skip to content

Commit

Permalink
misc urls
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu committed Mar 7, 2024
1 parent 174a80d commit 38305bc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/Query/Mysql/Over.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
use function trim;

/**
* ArithmeticExpression "OVER" "(" [OrderByClause] ")"
* OverFunction ::= "OVER" "(" ArithmeticExpression "," [OrderByClause] ")"
*
* @link https://dev.mysql.com/doc/refman/en/window-functions-usage.html
*
* @example
*/
class Over extends FunctionNode
{
Expand Down
6 changes: 5 additions & 1 deletion src/Query/Mysql/Regexp.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
use Doctrine\ORM\Query\TokenType;

/**
* "(" StringPrimary "REGEXP" StringExpression ")"
* RegexpFunction ::= "(" StringPrimary "REGEXP" StringExpression ")"
*
* @link https://dev.mysql.com/doc/refman/en/regexp.html#operator_regexp
*
* @example
*/
class Regexp extends FunctionNode
{
Expand Down
4 changes: 3 additions & 1 deletion src/Query/Mysql/Replace.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
use Doctrine\ORM\Query\TokenType;

/**
* "REPLACE" "(" ArithmeticPrimary "," ArithmeticPrimary "," ArithmeticPrimary ")"
* ReplaceFunction ::= "REPLACE" "(" ArithmeticPrimary "," ArithmeticPrimary "," ArithmeticPrimary ")"
*
* @link https://dev.mysql.com/doc/refman/en/string-functions.html#function_replace
*
* @author Jarek Kostrz <[email protected]>
*/
Expand Down
6 changes: 5 additions & 1 deletion src/Query/Mysql/UuidShort.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
use Doctrine\ORM\Query\TokenType;

/**
* "UUID_SHORT" "(" ")"
* UuidShortFunction ::= "UUID_SHORT" "(" ")"
*
* @link https://dev.mysql.com/doc/refman/en/miscellaneous-functions.html#function_uuid-short
*
* @example
*/
class UuidShort extends FunctionNode
{
Expand Down

0 comments on commit 38305bc

Please sign in to comment.