(self, sqltext, table, hint, iscrud)
| 4727 | return result_expr._compiler_dispatch(self, **column_clause_args) |
| 4728 | |
| 4729 | def format_from_hint_text(self, sqltext, table, hint, iscrud): |
| 4730 | hinttext = self.get_from_hint_text(table, hint) |
| 4731 | if hinttext: |
| 4732 | sqltext += " " + hinttext |
| 4733 | return sqltext |
| 4734 | |
| 4735 | def get_select_hint_text(self, byfroms): |
| 4736 | return None |
no test coverage detected