FieldTypeDescriptor provides the type of the provided field (if it exists)
| 15 | |
| 16 | // FieldTypeDescriptor provides the type of the provided field (if it exists) |
| 17 | type FieldTypeDescriptor interface { |
| 18 | FieldType(fieldName string) (fieldType FieldType, fieldExists bool) |
| 19 | } |
| 20 | |
| 21 | // ExpressionProcessor takes the query expression that has been parsed and processes it further |
| 22 | // Type conversion and validation of the expression are performed |
nothing calls this directly
no outgoing calls
no test coverage detected