ByServer orders the results by the server field.
(opts ...sql.OrderTermOption)
| 184 | |
| 185 | // ByServer orders the results by the server field. |
| 186 | func ByServer(opts ...sql.OrderTermOption) OrderOption { |
| 187 | return sql.OrderByField(FieldServer, opts...).ToFunc() |
| 188 | } |
| 189 | |
| 190 | // BySlaveKey orders the results by the slave_key field. |
| 191 | func BySlaveKey(opts ...sql.OrderTermOption) OrderOption { |
nothing calls this directly
no outgoing calls
no test coverage detected