nolint:revive
(not bool)
| 89 | |
| 90 | // nolint:revive |
| 91 | func equalsOp(not bool) string { |
| 92 | if not { |
| 93 | return "!=" |
| 94 | } |
| 95 | return "=" |
| 96 | } |
| 97 | |
| 98 | func basicSQLEquality(cfg *SQLGenerator, not bool, a, b Node) string { |
| 99 | return fmt.Sprintf("%s %s %s", |
no outgoing calls
no test coverage detected