(in bool)
| 2221 | } |
| 2222 | |
| 2223 | func NewBoolSQLVal(in bool) *SQLVal { |
| 2224 | return &SQLVal{Type: ValBool, Val: fmt.Sprintf("%t", in)} |
| 2225 | } |
| 2226 | |
| 2227 | // NewUnicode builds a new UnicodeStrVal. |
| 2228 | func NewUnicodeStrVal(in string) *SQLVal { |
no outgoing calls
no test coverage detected