You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ Schema::createFunction(
195
195
A sixth parameter lets you define further options for the function. Please [read the manual](https://www.postgresql.org/docs/current/sql-createfunction.html) for the exact meaning, some of them set enable or disable ways for PostgreSQL to optimize the execution.
|`->forEachRow()`| The trigger will be called for every row. |
259
259
|`->forEachStatement()`| The trigger will be called once for each statement *(default)*. |
260
260
|`->transitionTables(`<br>` old: 'oldrows',`<br>` new: 'newrows',`<br>`)`| The forEachStatement-trigger will provide the before/after state of the affected rows in special tables. You can omit either option if not valid for this trigger. |
@@ -1018,7 +1018,7 @@ User::query()
1018
1018
In addition to the basic form of a Common Table Expression these optional settings are available to support all PostgreSQL options:
| materialized |`bool`| Whether the CTE should be (not) materialized. This overrides PostgreSQL's automatic materialization decision. [(Documentation)](https://www.postgresql.org/docs/current/queries-with.html#id-1.5.6.12.7)|
1023
1023
| recursive |`bool`| Whether to use a recursive CTE. [(Documentation)](https://www.postgresql.org/docs/current/queries-with.html#QUERIES-WITH-RECURSIVE)|
1024
1024
| cycle |`string`| Specify the automatic cycle detection settings for recursive queries. [(Documentation)](https://www.postgresql.org/docs/current/queries-with.html#QUERIES-WITH-CYCLE)|
0 commit comments