Rewrite this Source to act as a stand-alone query to backend @parentStmt = the parent statement that this a partial source to
(parentStmt *SqlSelect)
| 1428 | // Rewrite this Source to act as a stand-alone query to backend |
| 1429 | // @parentStmt = the parent statement that this a partial source to |
| 1430 | func (m *SqlSource) Rewrite(parentStmt *SqlSelect) *SqlSelect { |
| 1431 | return RewriteSqlSource(m, parentStmt) |
| 1432 | } |
| 1433 | |
| 1434 | func (m *SqlSource) findFromAliases() (string, string) { |
| 1435 | from1, from2 := m.alias, "" |
nothing calls this directly
no test coverage detected