(self, sqltext, table, hint, iscrud)
| 4908 | return result_expr._compiler_dispatch(self, **column_clause_args) |
| 4909 | |
| 4910 | def format_from_hint_text(self, sqltext, table, hint, iscrud): |
| 4911 | hinttext = self.get_from_hint_text(table, hint) |
| 4912 | if hinttext: |
| 4913 | sqltext += " " + hinttext |
| 4914 | return sqltext |
| 4915 | |
| 4916 | def get_select_hint_text(self, byfroms): |
| 4917 | return None |
no test coverage detected