(limit int64)
| 222 | } |
| 223 | |
| 224 | func FormatMaximumSQLResultSizeMessage(limit int64) string { |
| 225 | return fmt.Sprintf("Output of query exceeds max allowed output size of %dMB", limit/1024/1024) |
| 226 | } |
| 227 | |
| 228 | func IsNil(val any) bool { |
| 229 | if val == nil { |
no outgoing calls
no test coverage detected