isAlphanumeric checks if a byte is alphanumeric
(c byte)
| 1411 | |
| 1412 | // isAlphanumeric checks if a byte is alphanumeric |
| 1413 | func isAlphanumeric(c byte) bool { |
| 1414 | return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') |
| 1415 | } |
| 1416 | |
| 1417 | // getSQLFunctionSignature returns the signature for a SQL function |
| 1418 | func getSQLFunctionSignature(funcName string) *SignatureInformation { |
no outgoing calls
no test coverage detected