(args []any, argsV []driver.NamedValue)
| 890 | } |
| 891 | |
| 892 | func convertNamedArguments(args []any, argsV []driver.NamedValue) { |
| 893 | for i, v := range argsV { |
| 894 | if v.Value != nil { |
| 895 | args[i] = v.Value.(any) |
| 896 | } else { |
| 897 | args[i] = nil |
| 898 | } |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | type wrapTx struct { |
| 903 | ctx context.Context |
no outgoing calls
no test coverage detected