(cf *ast.ColumnRef)
| 39 | } |
| 40 | |
| 41 | func hasStarRef(cf *ast.ColumnRef) bool { |
| 42 | for _, item := range cf.Fields.Items { |
| 43 | if _, ok := item.(*ast.A_Star); ok { |
| 44 | return true |
| 45 | } |
| 46 | } |
| 47 | return false |
| 48 | } |
| 49 | |
| 50 | // Compute the output columns for a statement. |
| 51 | // |
no outgoing calls
no test coverage detected