(
self, update_stmt, from_table, extra_froms, from_hints, **kw
)
| 2499 | return "ON CONFLICT %s DO UPDATE SET %s" % (target_text, action_text) |
| 2500 | |
| 2501 | def update_from_clause( |
| 2502 | self, update_stmt, from_table, extra_froms, from_hints, **kw |
| 2503 | ): |
| 2504 | kw["asfrom"] = True |
| 2505 | return "FROM " + ", ".join( |
| 2506 | t._compiler_dispatch(self, fromhints=from_hints, **kw) |
| 2507 | for t in extra_froms |
| 2508 | ) |
| 2509 | |
| 2510 | def delete_extra_from_clause( |
| 2511 | self, delete_stmt, from_table, extra_froms, from_hints, **kw |
nothing calls this directly
no test coverage detected