MCPcopy Create free account
hub / github.com/apache/impala / _write_join_clause

Method _write_join_clause

tests/comparison/model_translator.py:247–251  ·  view source on GitHub ↗
(self, join_clause)

Source from the content-addressed store, hash-verified

245 return sql
246
247 def _write_join_clause(self, join_clause):
248 sql = '%s JOIN %s' % (join_clause.join_type, self._write(join_clause.table_expr))
249 if join_clause.boolean_expr:
250 sql += ' ON ' + self._write(join_clause.boolean_expr)
251 return sql
252
253 def _write_where_clause(self, where_clause):
254 return 'WHERE\n' + self._write(where_clause.boolean_expr)

Callers

nothing calls this directly

Calls 1

_writeMethod · 0.95

Tested by

no test coverage detected