(m map[string]*TableReference)
| 397 | } |
| 398 | |
| 399 | func firstKey(m map[string]*TableReference) string { |
| 400 | for k := range m { |
| 401 | return k |
| 402 | } |
| 403 | return "" |
| 404 | } |
| 405 | |
| 406 | // collectCTENames returns the set of CTE (WITH clause) names that precede the |
| 407 | // statement, lower-cased for case-insensitive matching. omni does not attach |
no outgoing calls
no test coverage detected