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