(b byte)
| 245 | } |
| 246 | |
| 247 | func isIdentByte(b byte) bool { |
| 248 | return b == '_' || |
| 249 | (b >= 'a' && b <= 'z') || |
| 250 | (b >= 'A' && b <= 'Z') || |
| 251 | (b >= '0' && b <= '9') |
| 252 | } |
| 253 | |
| 254 | // defineTable installs a table in the catalog, retrying with generic column |
| 255 | // types if the real types fail to parse so that column names still surface. |
no outgoing calls
no test coverage detected