(r rune)
| 213 | } |
| 214 | |
| 215 | func isIdentRune(r rune) bool { |
| 216 | return (r >= 'A' && r <= 'Z') || (r >= 'a' && r <= 'z') || |
| 217 | (r >= '0' && r <= '9') || r == '_' || r == '$' |
| 218 | } |
| 219 | |
| 220 | // addColumnCandidates extracts column names from tables referenced in |
| 221 | // the active statement (the one containing the cursor) and adds them |