(c *plugin.Column, pos int)
| 154 | } |
| 155 | |
| 156 | func columnName(c *plugin.Column, pos int) string { |
| 157 | if c.Name != "" { |
| 158 | return c.Name |
| 159 | } |
| 160 | return fmt.Sprintf("column_%d", pos+1) |
| 161 | } |
| 162 | |
| 163 | func paramName(p *plugin.Parameter) string { |
| 164 | if p.Column.Name != "" { |
no outgoing calls
no test coverage detected