IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
204 | 204 | # Release savepoint if there is one |
205 | 205 | if sid is not None: |
206 | 206 | try: |
| 207 | if connection.features.can_defer_constraint_checks: |
| 208 | connection.check_constraints() |
207 | 209 | connection.savepoint_commit(sid) |
208 | 210 | except DatabaseError: |
209 | 211 | try: |
210 | 212 | connection.savepoint_rollback(sid) |
| 213 | if connection.features.can_defer_constraint_checks: |
| 214 | connection.check_constraints() |
211 | 215 | # The savepoint won't be reused. Release it to |
212 | 216 | # minimize overhead for the database server. |
213 | 217 | connection.savepoint_commit(sid) |