File tree 3 files changed +4
-4
lines changed
modules/pgsql/src/Driver/Database/pgsql
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public function __toString() {
140
140
$ table_information = $ this ->connection ->schema ()->queryTableInformation ($ this ->table );
141
141
if (isset ($ table_information ->serial_fields [0 ])) {
142
142
// Use RETURNING syntax to get the last insert ID in the same INSERT
143
- // query, see https://www.postgresql.org/docs/10 /dml-returning.html.
143
+ // query, see https://www.postgresql.org/docs/12 /dml-returning.html.
144
144
$ query .= ' RETURNING ' . $ table_information ->serial_fields [0 ];
145
145
}
146
146
}
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ class Tasks extends InstallTasks {
16
16
*
17
17
* The contrib extension pg_trgm is supposed to be installed.
18
18
*
19
- * @see https://www.postgresql.org/docs/10 /pgtrgm.html
19
+ * @see https://www.postgresql.org/docs/12 /pgtrgm.html
20
20
*/
21
- const PGSQL_MINIMUM_VERSION = '10 ' ;
21
+ const PGSQL_MINIMUM_VERSION = '12 ' ;
22
22
23
23
/**
24
24
* {@inheritdoc}
Original file line number Diff line number Diff line change @@ -706,7 +706,7 @@ public function fieldExists($table, $column) {
706
706
* {@inheritdoc}
707
707
*/
708
708
public function indexExists ($ table , $ name ) {
709
- // Details https://www.postgresql.org/docs/10 /view-pg-indexes.html
709
+ // Details https://www.postgresql.org/docs/12 /view-pg-indexes.html
710
710
$ index_name = $ this ->ensureIdentifiersLength ($ table , $ name , 'idx ' );
711
711
// Remove leading and trailing quotes because the index name is in a WHERE
712
712
// clause and not used as an identifier.
You can’t perform that action at this time.
0 commit comments