class PostgresGrammar extends Grammar

Traits

Properties

static protected array $macros

The registered string macros.

from  Macroable
protected Connection $connection

The connection used for escaping values.

from  Grammar
protected string[] $operators

All of the available clause operators.

protected string[] $bitwiseOperators

The grammar specific bitwise operators.

protected string[] $selectComponents

The components that make up a select clause.

from  Grammar
static protected string[] $customOperators

The Postgres grammar specific custom operators.

static protected bool $cascadeTruncate

Indicates if the cascade option should be used when truncating.

Methods

static void
macro(string $name, callable|object $macro)

Register a custom macro.

static void
mixin(object $mixin, bool $replace = true)

Mix another object into the class.

static bool
hasMacro(string $name)

Check if macro is registered.

static void
flushMacros()

Flush the existing macros.

static mixed
__callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

mixed
__call(string $method, array $parameters)

Dynamically handle calls to the class.

__construct(Connection $connection)

Create a new grammar instance.

from  Grammar
array
wrapArray(array $values)

Wrap an array of values.

from  Grammar
string
wrapTable(Expression|string $table, string|null $prefix = null)

Wrap a table in keyword identifiers.

from  Grammar
string|int|float
wrap(Expression|string $value)

Wrap a value in keyword identifiers.

from  Grammar
string
wrapAliasedValue(string $value)

Wrap a value that has an alias.

from  Grammar
string
wrapAliasedTable(string $value, string|null $prefix = null)

Wrap a table that has an alias.

from  Grammar
string
wrapSegments(array $segments)

Wrap the given value segments.

from  Grammar
string
wrapValue(string $value)

Wrap a single string in keyword identifiers.

from  Grammar
string
wrapJsonSelector(string $value)

Wrap the given JSON selector.

bool
isJsonSelector(string $value)

Determine if the given string is a JSON selector.

from  Grammar
string
columnize(array $columns)

Convert an array of column names into a delimited string.

from  Grammar
string
parameterize(array $values)

Create query parameter place-holders for an array.

from  Grammar
string|int|float
parameter(mixed $value)

Get the appropriate query parameter place-holder for a value.

from  Grammar
string
quoteString(string|array $value)

Quote the given string literal.

from  Grammar
string
escape(string|float|int|bool|null $value, bool $binary = false)

Escapes a value for safe SQL embedding.

from  Grammar
bool
isExpression(mixed $value)

Determine if the given value is a raw expression.

from  Grammar
string|int|float
getValue(Expression|string|int|float $expression)

Transforms expressions to their scalar types.

from  Grammar
string
getDateFormat()

Get the format for database stored dates.

from  Grammar
static void
flushState()

Flush all static state.

array
wrapJsonFieldAndPath(string $column)

Split the given JSON selector into the field and the optional path and wrap them separately.

string
wrapJsonPath(string $value, string $delimiter = '->')

Wrap the given JSON path.

string
wrapJsonPathSegment(string $segment)

Wrap the given JSON path segment.

string
compileSelect(Builder $query)

Compile a select query into SQL.

from  Grammar
array
compileComponents(Builder $query)

Compile the components necessary for a select clause.

from  Grammar
string
compileAggregate(Builder $query, array $aggregate)

Compile an aggregated select clause.

from  Grammar
string|null
compileColumns(Builder $query, array $columns)

Compile the "select *" portion of the query.

string
compileFrom(Builder $query, Expression|string $table)

Compile the "from" portion of the query.

from  Grammar
string
compileJoins(Builder $query, array $joins)

Compile the "join" portions of the query.

from  Grammar
string
compileJoinLateral(JoinLateralClause $join, string $expression)

Compile a "lateral join" clause.

bool
supportsStraightJoins()

Determine if the grammar supports straight joins.

from  Grammar
string
compileWheres(Builder $query)

Compile the "where" portions of the query.

from  Grammar
array
compileWheresToArray(Builder $query)

Get an array of all the where clauses for the query.

from  Grammar
string
concatenateWhereClauses(Builder $query, array $sql)

Format the where clause statements into one string.

from  Grammar
string
whereRaw(Builder $query, array $where)

Compile a raw where clause.

from  Grammar
string
whereBasic(Builder $query, array $where)

Compile a basic where clause.

string
whereBitwise(Builder $query, array $where)

Compile a bitwise operator where clause.

string
whereLike(Builder $query, array $where)

Compile a "where like" clause.

string
whereIn(Builder $query, array $where)

Compile a "where in" clause.

from  Grammar
string
whereNotIn(Builder $query, array $where)

Compile a "where not in" clause.

from  Grammar
string
whereNotInRaw(Builder $query, array $where)

Compile a "where not in raw" clause.

from  Grammar
string
whereInRaw(Builder $query, array $where)

Compile a "where in raw" clause.

from  Grammar
string
whereNull(Builder $query, array $where)

Compile a "where null" clause.

from  Grammar
string
whereNotNull(Builder $query, array $where)

Compile a "where not null" clause.

from  Grammar
string
whereNullSafeEquals(Builder $query, array $where)

Compile a "where null safe equals" clause.

from  Grammar
string
whereBetween(Builder $query, array $where)

Compile a "between" where clause.

from  Grammar
string
whereBetweenColumns(Builder $query, array $where)

Compile a "between" where clause.

from  Grammar
string
whereValueBetween(Builder $query, array $where)

Compile a "value between" where clause.

from  Grammar
string
whereDate(Builder $query, array $where)

Compile a "where date" clause.

string
whereTime(Builder $query, array $where)

Compile a "where time" clause.

string
whereDay(Builder $query, array $where)

Compile a "where day" clause.

from  Grammar
string
whereMonth(Builder $query, array $where)

Compile a "where month" clause.

from  Grammar
string
whereYear(Builder $query, array $where)

Compile a "where year" clause.

from  Grammar
string
dateBasedWhere(string $type, Builder $query, array $where)

Compile a date based where clause.

string
whereColumn(Builder $query, array $where)

Compile a where clause comparing two columns.

from  Grammar
string
whereNested(Builder $query, array $where)

Compile a nested where clause.

from  Grammar
string
whereSub(Builder $query, array $where)

Compile a where condition with a sub-select.

from  Grammar
string
whereExists(Builder $query, array $where)

Compile a where exists clause.

from  Grammar
string
whereNotExists(Builder $query, array $where)

Compile a where not exists clause.

from  Grammar
string
whereRowValues(Builder $query, array $where)

Compile a where row values condition.

from  Grammar
string
whereJsonBoolean(Builder $query, array $where)

Compile a "where JSON boolean" clause.

from  Grammar
string
whereJsonContains(Builder $query, array $where)

Compile a "where JSON contains" clause.

from  Grammar
string
compileJsonContains(string $column, string $value)

Compile a "JSON contains" statement into SQL.

string
whereJsonOverlaps(Builder $query, array $where)

Compile a "where JSON overlaps" clause.

from  Grammar
string
compileJsonOverlaps(string $column, string $value)

Compile a "JSON overlaps" statement into SQL.

from  Grammar
mixed
prepareBindingForJsonContains(mixed $binding)

Prepare the binding for a "JSON contains" statement.

from  Grammar
string
whereJsonContainsKey(Builder $query, array $where)

Compile a "where JSON contains key" clause.

from  Grammar
string
compileJsonContainsKey(string $column)

Compile a "JSON contains key" statement into SQL.

string
whereJsonLength(Builder $query, array $where)

Compile a "where JSON length" clause.

from  Grammar
string
compileJsonLength(string $column, string $operator, string $value)

Compile a "JSON length" statement into SQL.

string
compileJsonValueCast(string $value)

Compile a "JSON value cast" statement into SQL.

from  Grammar
string
whereFullText(Builder $query, array $where)

Compile a "where fulltext" clause.

string
whereExpression(Builder $query, array $where)

Compile a clause based on an expression.

from  Grammar
string
compileGroups(Builder $query, array $groups)

Compile the "group by" portions of the query.

from  Grammar
string
compileHavings(Builder $query)

Compile the "having" portions of the query.

from  Grammar
string
compileHaving(array $having)

Compile a single having clause.

string
compileBasicHaving(array $having)

Compile a basic having clause.

from  Grammar
string
compileHavingBetween(array $having)

Compile a "between" having clause.

from  Grammar
string
compileHavingNull(array $having)

Compile a having null clause.

from  Grammar
string
compileHavingNotNull(array $having)

Compile a having not null clause.

from  Grammar
string
compileHavingBit(array $having)

Compile a having clause involving a bit operator.

from  Grammar
string
compileHavingExpression(array $having)

Compile a having clause involving an expression.

from  Grammar
string
compileNestedHavings(array $having)

Compile a nested having clause.

from  Grammar
string
compileOrders(Builder $query, array $orders)

Compile the "order by" portions of the query.

from  Grammar
array
compileOrdersToArray(Builder $query, array $orders)

Compile the query orders to an array.

from  Grammar
string
compileInOrderOf(array $order)

Compile an "in order of" clause.

from  Grammar
string
compileRandom(string|int $seed)

Compile the random statement into SQL.

from  Grammar
string
compileLimit(Builder $query, int $limit)

Compile the "limit" portions of the query.

from  Grammar
string
compileGroupLimit(Builder $query)

Compile a group limit clause.

from  Grammar
string
compileRowNumber(string $partition, string $orders)

Compile a row number clause.

from  Grammar
string
compileOffset(Builder $query, int $offset)

Compile the "offset" portions of the query.

from  Grammar
string
compileUnions(Builder $query)

Compile the "union" queries attached to the main query.

from  Grammar
string
compileUnion(array $union)

Compile a single union statement.

from  Grammar
string
wrapUnion(string $sql)

Wrap a union subquery in parentheses.

from  Grammar
string
compileUnionAggregate(Builder $query)

Compile a union aggregate query into SQL.

from  Grammar
string
compileExists(Builder $query)

Compile an exists statement into SQL.

from  Grammar
string
compileInsert(Builder $query, array $values)

Compile an insert statement into SQL.

from  Grammar
string
compileInsertOrIgnore(Builder $query, array $values)

Compile an insert ignore statement into SQL.

string
compileInsertOrIgnoreReturning(Builder $query, array $values, array $returning, array|null $uniqueBy)

Compile an insert or ignore statement with a returning clause into SQL.

string
compileInsertGetId(Builder $query, array $values, string|null $sequence)

Compile an insert and get ID statement into SQL.

string
compileInsertUsing(Builder $query, array $columns, string $sql)

Compile an insert statement using a subquery into SQL.

from  Grammar
string
compileInsertOrIgnoreUsing(Builder $query, array $columns, string $sql)

Compile an insert ignore statement using a subquery into SQL.

string
compileUpdate(Builder $query, array $values)

Compile an update statement into SQL.

string
compileUpdateColumns(Builder $query, array $values)

Compile the columns for an update statement.

string
compileUpdateWithoutJoins(Builder $query, string $table, string $columns, string $where)

Compile an update statement without joins into SQL.

from  Grammar
string
compileUpdateWithJoins(Builder $query, string $table, string $columns, string $where)

Compile an update statement with joins into SQL.

from  Grammar
string
compileUpsert(Builder $query, array $values, array $uniqueBy, array $update)

Compile an "upsert" statement into SQL.

array
prepareBindingsForUpdate(array $bindings, array $values)

Prepare the bindings for an update statement.

string
compileDelete(Builder $query)

Compile a delete statement into SQL.

string
compileDeleteWithoutJoins(Builder $query, string $table, string $where)

Compile a delete statement without joins into SQL.

from  Grammar
string
compileDeleteWithJoins(Builder $query, string $table, string $where)

Compile a delete statement with joins into SQL.

from  Grammar
array
prepareBindingsForDelete(array $bindings)

Prepare the bindings for a delete statement.

from  Grammar
array
compileTruncate(Builder $query)

Compile a truncate table statement into SQL.

string
compileLock(Builder $query, bool|string $value)

Compile the lock into SQL.

string|null
compileThreadCount()

Compile a query to get the number of open connections for a database.

bool
supportsSavepoints()

Determine if the grammar supports savepoints.

from  Grammar
string
compileSavepoint(string $name)

Compile the SQL statement to define a savepoint.

from  Grammar
string
compileSavepointRollBack(string $name)

Compile the SQL statement to execute a savepoint rollback.

from  Grammar
string
wrapJsonBooleanSelector(string $value)

Wrap the given JSON selector for boolean values.

string
wrapJsonBooleanValue(string $value)

Wrap the given JSON boolean value.

string
concatenate(array $segments)

Concatenate an array of segments, removing empties.

from  Grammar
string
removeLeadingBoolean(string $value)

Remove the leading boolean from a statement.

from  Grammar
string
substituteBindingsIntoRawSql(string $sql, array $bindings)

Substitute the given bindings into the given raw SQL query.

array
getOperators()

Get the Postgres grammar specific operators.

array
getBitwiseOperators()

Get the grammar specific bitwise operators.

from  Grammar
array
validFullTextLanguages()

Get an array of valid full text languages.

string
compileHavingBitwise(array $having)

Compile a having clause involving a bitwise operator.

string
compileJsonUpdateColumn(string $key, mixed $value)

Prepares a JSON column being updated using the JSONB_SET function.

string
compileUpdateFrom(Builder $query, array $values)

Compile an update from statement into SQL.

string
compileUpdateWheres(Builder $query)

Compile the additional where clauses for updates with joins.

string
compileUpdateJoinWheres(Builder $query)

Compile the "join" clause where clauses for an update.

array
prepareBindingsForUpdateFrom(array $bindings, array $values)

Prepare the bindings for an update statement.

string
compileUpdateWithJoinsOrLimit(Builder $query, array $values)

Compile an update statement with joins or limit into SQL.

string
compileDeleteWithJoinsOrLimit(Builder $query)

Compile a delete statement with joins or limit into SQL.

array
wrapJsonPathAttributes(array $path)

Wrap the attributes of the given JSON path.

array
parseJsonPathArrayKeys(string $attribute)

Parse the given JSON path attribute for array keys.

static void
customOperators(array $operators)

Set any Postgres grammar specific custom operators.

static void
cascadeOnTruncate(bool $value = true)

Enable or disable the "cascade" option when compiling the truncate statement.

Details

in Macroable at line 28
static void macro(string $name, callable|object $macro)

Register a custom macro.

Boot-only. Macros persist in a static property for the worker lifetime and apply to every subsequent call on the macroable class.

Parameters

string $name
callable|object $macro

Return Value

void

in Macroable at line 41
static void mixin(object $mixin, bool $replace = true)

Mix another object into the class.

Boot-only. Delegates to macro() for each method; registered macros persist in a static property for the worker lifetime.

Parameters

object $mixin
bool $replace

Return Value

void

Exceptions

ReflectionException

in Macroable at line 57
static bool hasMacro(string $name)

Check if macro is registered.

Parameters

string $name

Return Value

bool

in Macroable at line 68
static void flushMacros()

Flush the existing macros.

Boot or tests only. Clears worker-wide macros; concurrent coroutines may resolve different methods depending on timing.

Return Value

void

in Macroable at line 78
static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

in Macroable at line 103
mixed __call(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

in Grammar at line 24
__construct(Connection $connection)

Create a new grammar instance.

Parameters

Connection $connection

in Grammar at line 35
array wrapArray(array $values)

Wrap an array of values.

Parameters

array $values

Return Value

array

in Grammar at line 43
string wrapTable(Expression|string $table, string|null $prefix = null)

Wrap a table in keyword identifiers.

Parameters

Expression|string $table
string|null $prefix

Return Value

string

in Grammar at line 75
string|int|float wrap(Expression|string $value)

Wrap a value in keyword identifiers.

Parameters

Expression|string $value

Return Value

string|int|float

in Grammar at line 101
protected string wrapAliasedValue(string $value)

Wrap a value that has an alias.

Parameters

string $value

Return Value

string

in Grammar at line 111
protected string wrapAliasedTable(string $value, string|null $prefix = null)

Wrap a table that has an alias.

Parameters

string $value
string|null $prefix

Return Value

string

in Grammar at line 125
protected string wrapSegments(array $segments)

Wrap the given value segments.

Parameters

array $segments

Return Value

string

in Grammar at line 137
protected string wrapValue(string $value)

Wrap a single string in keyword identifiers.

Parameters

string $value

Return Value

string

at line 593
protected string wrapJsonSelector(string $value)

Wrap the given JSON selector.

Parameters

string $value

Return Value

string

in Grammar at line 159
protected bool isJsonSelector(string $value)

Determine if the given string is a JSON selector.

Parameters

string $value

Return Value

bool

in Grammar at line 169
string columnize(array $columns)

Convert an array of column names into a delimited string.

Parameters

array $columns

Return Value

string

in Grammar at line 177
string parameterize(array $values)

Create query parameter place-holders for an array.

Parameters

array $values

Return Value

string

in Grammar at line 185
string|int|float parameter(mixed $value)

Get the appropriate query parameter place-holder for a value.

Parameters

mixed $value

Return Value

string|int|float

in Grammar at line 195
string quoteString(string|array $value)

Quote the given string literal.

Parameters

string|array $value

Return Value

string

in Grammar at line 207
string escape(string|float|int|bool|null $value, bool $binary = false)

Escapes a value for safe SQL embedding.

Parameters

string|float|int|bool|null $value
bool $binary

Return Value

string

in Grammar at line 215
bool isExpression(mixed $value)

Determine if the given value is a raw expression.

Parameters

mixed $value

Return Value

bool

in Grammar at line 223
string|int|float getValue(Expression|string|int|float $expression)

Transforms expressions to their scalar types.

Parameters

Expression|string|int|float $expression

Return Value

string|int|float

in Grammar at line 235
string getDateFormat()

Get the format for database stored dates.

Return Value

string

at line 731
static void flushState()

Flush all static state.

Return Value

void

in CompilesJsonPaths at line 15
protected array wrapJsonFieldAndPath(string $column)

Split the given JSON selector into the field and the optional path and wrap them separately.

Parameters

string $column

Return Value

array

in CompilesJsonPaths at line 29
protected string wrapJsonPath(string $value, string $delimiter = '->')

Wrap the given JSON path.

Parameters

string $value
string $delimiter

Return Value

string

in CompilesJsonPaths at line 43
protected string wrapJsonPathSegment(string $segment)

Wrap the given JSON path segment.

Parameters

string $segment

Return Value

string

in Grammar at line 58
string compileSelect(Builder $query)

Compile a select query into SQL.

Parameters

Builder $query

Return Value

string

in Grammar at line 105
protected array compileComponents(Builder $query)

Compile the components necessary for a select clause.

Parameters

Builder $query

Return Value

array

in Grammar at line 125
protected string compileAggregate(Builder $query, array $aggregate)

Compile an aggregated select clause.

Parameters

Builder $query
array $aggregate

Return Value

string

at line 203
protected string|null compileColumns(Builder $query, array $columns)

Compile the "select *" portion of the query.

Parameters

Builder $query
array $columns

Return Value

string|null

in Grammar at line 165
protected string compileFrom(Builder $query, Expression|string $table)

Compile the "from" portion of the query.

Parameters

Builder $query
Expression|string $table

Return Value

string

in Grammar at line 173
protected string compileJoins(Builder $query, array $joins)

Compile the "join" portions of the query.

Parameters

Builder $query
array $joins

Return Value

string

at line 396
string compileJoinLateral(JoinLateralClause $join, string $expression)

Compile a "lateral join" clause.

Parameters

JoinLateralClause $join
string $expression

Return Value

string

in Grammar at line 207
protected bool supportsStraightJoins()

Determine if the grammar supports straight joins.

Return Value

bool

Exceptions

RuntimeException

in Grammar at line 215
string compileWheres(Builder $query)

Compile the "where" portions of the query.

Parameters

Builder $query

Return Value

string

in Grammar at line 233
protected array compileWheresToArray(Builder $query)

Get an array of all the where clauses for the query.

Parameters

Builder $query

Return Value

array

in Grammar at line 243
protected string concatenateWhereClauses(Builder $query, array $sql)

Format the where clause statements into one string.

Parameters

Builder $query
array $sql

Return Value

string

in Grammar at line 253
protected string whereRaw(Builder $query, array $where)

Compile a raw where clause.

Parameters

Builder $query
array $where

Return Value

string

at line 53
protected string whereBasic(Builder $query, array $where)

Compile a basic where clause.

Parameters

Builder $query
array $where

Return Value

string

at line 70
protected string whereBitwise(Builder $query, array $where)

Compile a bitwise operator where clause.

Parameters

Builder $query
array $where

Return Value

string

at line 82
protected string whereLike(Builder $query, array $where)

Compile a "where like" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 295
protected string whereIn(Builder $query, array $where)

Compile a "where in" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 307
protected string whereNotIn(Builder $query, array $where)

Compile a "where not in" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 321
protected string whereNotInRaw(Builder $query, array $where)

Compile a "where not in raw" clause.

For safety, whereIntegerInRaw ensures this method is only used with integer values.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 335
protected string whereInRaw(Builder $query, array $where)

Compile a "where in raw" clause.

For safety, whereIntegerInRaw ensures this method is only used with integer values.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 347
protected string whereNull(Builder $query, array $where)

Compile a "where null" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 355
protected string whereNotNull(Builder $query, array $where)

Compile a "where not null" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 363
protected string whereNullSafeEquals(Builder $query, array $where)

Compile a "where null safe equals" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 371
protected string whereBetween(Builder $query, array $where)

Compile a "between" where clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 385
protected string whereBetweenColumns(Builder $query, array $where)

Compile a "between" where clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 399
protected string whereValueBetween(Builder $query, array $where)

Compile a "value between" where clause.

Parameters

Builder $query
array $where

Return Value

string

at line 94
protected string whereDate(Builder $query, array $where)

Compile a "where date" clause.

Parameters

Builder $query
array $where

Return Value

string

at line 109
protected string whereTime(Builder $query, array $where)

Compile a "where time" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 429
protected string whereDay(Builder $query, array $where)

Compile a "where day" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 437
protected string whereMonth(Builder $query, array $where)

Compile a "where month" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 445
protected string whereYear(Builder $query, array $where)

Compile a "where year" clause.

Parameters

Builder $query
array $where

Return Value

string

at line 124
protected string dateBasedWhere(string $type, Builder $query, array $where)

Compile a date based where clause.

Parameters

string $type
Builder $query
array $where

Return Value

string

in Grammar at line 463
protected string whereColumn(Builder $query, array $where)

Compile a where clause comparing two columns.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 473
protected string whereNested(Builder $query, array $where)

Compile a nested where clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 486
protected string whereSub(Builder $query, array $where)

Compile a where condition with a sub-select.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 496
protected string whereExists(Builder $query, array $where)

Compile a where exists clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 504
protected string whereNotExists(Builder $query, array $where)

Compile a where not exists clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 512
protected string whereRowValues(Builder $query, array $where)

Compile a where row values condition.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 524
protected string whereJsonBoolean(Builder $query, array $where)

Compile a "where JSON boolean" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 538
protected string whereJsonContains(Builder $query, array $where)

Compile a "where JSON contains" clause.

Parameters

Builder $query
array $where

Return Value

string

at line 226
protected string compileJsonContains(string $column, string $value)

Compile a "JSON contains" statement into SQL.

Parameters

string $column
string $value

Return Value

string

in Grammar at line 561
protected string whereJsonOverlaps(Builder $query, array $where)

Compile a "where JSON overlaps" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 576
protected string compileJsonOverlaps(string $column, string $value)

Compile a "JSON overlaps" statement into SQL.

Parameters

string $column
string $value

Return Value

string

Exceptions

RuntimeException

in Grammar at line 584
mixed prepareBindingForJsonContains(mixed $binding)

Prepare the binding for a "JSON contains" statement.

Parameters

mixed $binding

Return Value

mixed

in Grammar at line 592
protected string whereJsonContainsKey(Builder $query, array $where)

Compile a "where JSON contains key" clause.

Parameters

Builder $query
array $where

Return Value

string

at line 236
protected string compileJsonContainsKey(string $column)

Compile a "JSON contains key" statement into SQL.

Parameters

string $column

Return Value

string

in Grammar at line 614
protected string whereJsonLength(Builder $query, array $where)

Compile a "where JSON length" clause.

Parameters

Builder $query
array $where

Return Value

string

at line 267
protected string compileJsonLength(string $column, string $operator, string $value)

Compile a "JSON length" statement into SQL.

Parameters

string $column
string $operator
string $value

Return Value

string

in Grammar at line 636
string compileJsonValueCast(string $value)

Compile a "JSON value cast" statement into SQL.

Parameters

string $value

Return Value

string

at line 134
string whereFullText(Builder $query, array $where)

Compile a "where fulltext" clause.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 652
string whereExpression(Builder $query, array $where)

Compile a clause based on an expression.

Parameters

Builder $query
array $where

Return Value

string

in Grammar at line 660
protected string compileGroups(Builder $query, array $groups)

Compile the "group by" portions of the query.

Parameters

Builder $query
array $groups

Return Value

string

in Grammar at line 668
protected string compileHavings(Builder $query)

Compile the "having" portions of the query.

Parameters

Builder $query

Return Value

string

at line 277
protected string compileHaving(array $having)

Compile a single having clause.

Parameters

array $having

Return Value

string

in Grammar at line 698
protected string compileBasicHaving(array $having)

Compile a basic having clause.

Parameters

array $having

Return Value

string

in Grammar at line 710
protected string compileHavingBetween(array $having)

Compile a "between" having clause.

Parameters

array $having

Return Value

string

in Grammar at line 726
protected string compileHavingNull(array $having)

Compile a having null clause.

Parameters

array $having

Return Value

string

in Grammar at line 736
protected string compileHavingNotNull(array $having)

Compile a having not null clause.

Parameters

array $having

Return Value

string

in Grammar at line 746
protected string compileHavingBit(array $having)

Compile a having clause involving a bit operator.

Parameters

array $having

Return Value

string

in Grammar at line 758
protected string compileHavingExpression(array $having)

Compile a having clause involving an expression.

Parameters

array $having

Return Value

string

in Grammar at line 766
protected string compileNestedHavings(array $having)

Compile a nested having clause.

Parameters

array $having

Return Value

string

in Grammar at line 774
protected string compileOrders(Builder $query, array $orders)

Compile the "order by" portions of the query.

Parameters

Builder $query
array $orders

Return Value

string

in Grammar at line 786
protected array compileOrdersToArray(Builder $query, array $orders)

Compile the query orders to an array.

Parameters

Builder $query
array $orders

Return Value

array

in Grammar at line 804
protected string compileInOrderOf(array $order)

Compile an "in order of" clause.

Parameters

array $order

Return Value

string

in Grammar at line 820
string compileRandom(string|int $seed)

Compile the random statement into SQL.

Parameters

string|int $seed

Return Value

string

in Grammar at line 828
protected string compileLimit(Builder $query, int $limit)

Compile the "limit" portions of the query.

Parameters

Builder $query
int $limit

Return Value

string

in Grammar at line 836
protected string compileGroupLimit(Builder $query)

Compile a group limit clause.

Parameters

Builder $query

Return Value

string

in Grammar at line 879
protected string compileRowNumber(string $partition, string $orders)

Compile a row number clause.

Parameters

string $partition
string $orders

Return Value

string

in Grammar at line 889
protected string compileOffset(Builder $query, int $offset)

Compile the "offset" portions of the query.

Parameters

Builder $query
int $offset

Return Value

string

in Grammar at line 897
protected string compileUnions(Builder $query)

Compile the "union" queries attached to the main query.

Parameters

Builder $query

Return Value

string

in Grammar at line 923
protected string compileUnion(array $union)

Compile a single union statement.

Parameters

array $union

Return Value

string

in Grammar at line 933
protected string wrapUnion(string $sql)

Wrap a union subquery in parentheses.

Parameters

string $sql

Return Value

string

in Grammar at line 941
protected string compileUnionAggregate(Builder $query)

Compile a union aggregate query into SQL.

Parameters

Builder $query

Return Value

string

in Grammar at line 953
string compileExists(Builder $query)

Compile an exists statement into SQL.

Parameters

Builder $query

Return Value

string

in Grammar at line 963
string compileInsert(Builder $query, array $values)

Compile an insert statement into SQL.

Parameters

Builder $query
array $values

Return Value

string

at line 313
string compileInsertOrIgnore(Builder $query, array $values)

Compile an insert ignore statement into SQL.

Parameters

Builder $query
array $values

Return Value

string

at line 321
string compileInsertOrIgnoreReturning(Builder $query, array $values, array $returning, array|null $uniqueBy)

Compile an insert or ignore statement with a returning clause into SQL.

Parameters

Builder $query
array $values
array $returning
array|null $uniqueBy

Return Value

string

at line 342
string compileInsertGetId(Builder $query, array $values, string|null $sequence)

Compile an insert and get ID statement into SQL.

Parameters

Builder $query
array $values
string|null $sequence

Return Value

string

in Grammar at line 1021
string compileInsertUsing(Builder $query, array $columns, string $sql)

Compile an insert statement using a subquery into SQL.

Parameters

Builder $query
array $columns
string $sql

Return Value

string

at line 334
string compileInsertOrIgnoreUsing(Builder $query, array $columns, string $sql)

Compile an insert ignore statement using a subquery into SQL.

Parameters

Builder $query
array $columns
string $sql

Return Value

string

at line 350
string compileUpdate(Builder $query, array $values)

Compile an update statement into SQL.

Parameters

Builder $query
array $values

Return Value

string

at line 362
protected string compileUpdateColumns(Builder $query, array $values)

Compile the columns for an update statement.

Parameters

Builder $query
array $values

Return Value

string

in Grammar at line 1073
protected string compileUpdateWithoutJoins(Builder $query, string $table, string $columns, string $where)

Compile an update statement without joins into SQL.

Parameters

Builder $query
string $table
string $columns
string $where

Return Value

string

in Grammar at line 1081
protected string compileUpdateWithJoins(Builder $query, string $table, string $columns, string $where)

Compile an update statement with joins into SQL.

Parameters

Builder $query
string $table
string $columns
string $where

Return Value

string

at line 378
string compileUpsert(Builder $query, array $values, array $uniqueBy, array $update)

Compile an "upsert" statement into SQL.

Parameters

Builder $query
array $values
array $uniqueBy
array $update

Return Value

string

at line 530
array prepareBindingsForUpdate(array $bindings, array $values)

Prepare the bindings for an update statement.

Parameters

array $bindings
array $values

Return Value

array

at line 551
string compileDelete(Builder $query)

Compile a delete statement into SQL.

Parameters

Builder $query

Return Value

string

in Grammar at line 1131
protected string compileDeleteWithoutJoins(Builder $query, string $table, string $where)

Compile a delete statement without joins into SQL.

Parameters

Builder $query
string $table
string $where

Return Value

string

in Grammar at line 1139
protected string compileDeleteWithJoins(Builder $query, string $table, string $where)

Compile a delete statement with joins into SQL.

Parameters

Builder $query
string $table
string $where

Return Value

string

in Grammar at line 1151
array prepareBindingsForDelete(array $bindings)

Prepare the bindings for a delete statement.

Parameters

array $bindings

Return Value

array

at line 577
array compileTruncate(Builder $query)

Compile a truncate table statement into SQL.

Parameters

Builder $query

Return Value

array

at line 301
protected string compileLock(Builder $query, bool|string $value)

Compile the lock into SQL.

Parameters

Builder $query
bool|string $value

Return Value

string

at line 585
string|null compileThreadCount()

Compile a query to get the number of open connections for a database.

Return Value

string|null

in Grammar at line 1185
bool supportsSavepoints()

Determine if the grammar supports savepoints.

Return Value

bool

in Grammar at line 1193
string compileSavepoint(string $name)

Compile the SQL statement to define a savepoint.

Parameters

string $name

Return Value

string

in Grammar at line 1201
string compileSavepointRollBack(string $name)

Compile the SQL statement to execute a savepoint rollback.

Parameters

string $name

Return Value

string

at line 613
protected string wrapJsonBooleanSelector(string $value)

Wrap the given JSON selector for boolean values.

Parameters

string $value

Return Value

string

at line 627
protected string wrapJsonBooleanValue(string $value)

Wrap the given JSON boolean value.

Parameters

string $value

Return Value

string

in Grammar at line 1225
protected string concatenate(array $segments)

Concatenate an array of segments, removing empties.

Parameters

array $segments

Return Value

string

in Grammar at line 1235
protected string removeLeadingBoolean(string $value)

Remove the leading boolean from a statement.

Parameters

string $value

Return Value

string

at line 674
string substituteBindingsIntoRawSql(string $sql, array $bindings)

Substitute the given bindings into the given raw SQL query.

Parameters

string $sql
array $bindings

Return Value

string

at line 694
array getOperators()

Get the Postgres grammar specific operators.

Return Value

array

in Grammar at line 1296
array getBitwiseOperators()

Get the grammar specific bitwise operators.

Return Value

array

at line 172
protected array validFullTextLanguages()

Get an array of valid full text languages.

Return Value

array

at line 289
protected string compileHavingBitwise(array $having)

Compile a having clause involving a bitwise operator.

Parameters

array $having

Return Value

string

at line 404
protected string compileJsonUpdateColumn(string $key, mixed $value)

Prepares a JSON column being updated using the JSONB_SET function.

Parameters

string $key
mixed $value

Return Value

string

at line 418
string compileUpdateFrom(Builder $query, array $values)

Compile an update from statement into SQL.

Parameters

Builder $query
array $values

Return Value

string

at line 450
protected string compileUpdateWheres(Builder $query)

Compile the additional where clauses for updates with joins.

Parameters

Builder $query

Return Value

string

at line 473
protected string compileUpdateJoinWheres(Builder $query)

Compile the "join" clause where clauses for an update.

Parameters

Builder $query

Return Value

string

at line 494
array prepareBindingsForUpdateFrom(array $bindings, array $values)

Prepare the bindings for an update statement.

Parameters

array $bindings
array $values

Return Value

array

at line 514
protected string compileUpdateWithJoinsOrLimit(Builder $query, array $values)

Compile an update statement with joins or limit into SQL.

Parameters

Builder $query
array $values

Return Value

string

at line 563
protected string compileDeleteWithJoinsOrLimit(Builder $query)

Compile a delete statement with joins or limit into SQL.

Parameters

Builder $query

Return Value

string

at line 635
protected array wrapJsonPathAttributes(array $path)

Wrap the attributes of the given JSON path.

Parameters

array $path

Return Value

array

at line 654
protected array parseJsonPathArrayKeys(string $attribute)

Parse the given JSON path attribute for array keys.

Parameters

string $attribute

Return Value

array

at line 707
static void customOperators(array $operators)

Set any Postgres grammar specific custom operators.

Boot-only. The operator list persists in a static property for the worker lifetime and applies to every Postgres query built across all coroutines.

Parameters

array $operators

Return Value

void

at line 720
static void cascadeOnTruncate(bool $value = true)

Enable or disable the "cascade" option when compiling the truncate statement.

Boot-only. The flag persists in a static property for the worker lifetime and applies to every truncate() across all coroutines.

Parameters

bool $value

Return Value

void