defaultSelector is a selector implementation that does the simpliest possible pass through when generating column expressions. Its use is suitable for all database engines not requiring additional customization.
| 18 | // pass through when generating column expressions. Its use is suitable for all |
| 19 | // database engines not requiring additional customization. |
| 20 | type defaultSelector struct{} |
| 21 | |
| 22 | func newDefaultSelector() *defaultSelector { |
| 23 | return &defaultSelector{} |
nothing calls this directly
no outgoing calls
no test coverage detected