Eq is syntactic sugar for use with Where/Having/Set methods.
| 135 | |
| 136 | // Eq is syntactic sugar for use with Where/Having/Set methods. |
| 137 | type Eq map[string]interface{} |
| 138 | |
| 139 | func (eq Eq) toSQL(useNotOpr bool) (sql string, args []interface{}, err error) { |
| 140 | if len(eq) == 0 { |
no outgoing calls
no test coverage detected