Skip to content

Commit 2e2a030

Browse files
committed
Revert execution
1 parent 757827e commit 2e2a030

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Database/Adapter/Postgres.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ public function createDocuments(string $collection, array $documents): array
11551155
$stmt->bindValue($key, $value, $this->getPDOType($value));
11561156
}
11571157

1158-
$stmt->execute();
1158+
$this->execute($stmt);
11591159

11601160
if (!empty($permissions)) {
11611161
$tenantColumn = $this->sharedTables ? ', _tenant' : '';
@@ -1175,7 +1175,7 @@ public function createDocuments(string $collection, array $documents): array
11751175
}
11761176
}
11771177

1178-
$stmtPermissions?->execute();
1178+
$this->execute($stmtPermissions);
11791179
}
11801180

11811181
$sequences = $this->getSequences(

0 commit comments

Comments
 (0)