FromExpr sets the expression of `FROM` clause.
(x Querier)
| 1897 | |
| 1898 | // FromExpr sets the expression of `FROM` clause. |
| 1899 | func (s *Selector) FromExpr(x Querier) *Selector { |
| 1900 | s.from = nil |
| 1901 | return s.AppendFromExpr(x) |
| 1902 | } |
| 1903 | |
| 1904 | // AppendFromExpr appends an expression (Queries) to the `FROM` clause. |
| 1905 | func (s *Selector) AppendFromExpr(x Querier) *Selector { |
nothing calls this directly
no test coverage detected