()
| 938 | return m.ToPbStatement().Select |
| 939 | } |
| 940 | func (m *SqlSelect) Copy() *SqlSelect { |
| 941 | pb := m.ToPB() |
| 942 | selCopy := SqlSelectFromPb(pb) |
| 943 | return selCopy |
| 944 | } |
| 945 | |
| 946 | // SqlSelectToPb Given a select statement lets convert it into a PB statement |
| 947 | func SqlSelectToPb(m *SqlSelect) *SqlSelectPb { |
nothing calls this directly
no test coverage detected