Find a column in a schema by walking down the type tree to find the right column. @param schema the schema to look in @param source the name of the column @param isSchemaEvolutionCaseAware should the string compare be case sensitive @param visitor The visitor, which is called on each level
(TypeDescription schema,
ParserUtils.StringPosition source,
boolean isSchemaEvolutionCaseAware,
TypeVisitor visitor)
| 333 | * @param visitor The visitor, which is called on each level |
| 334 | */ |
| 335 | public static void findColumn(TypeDescription schema, |
| 336 | ParserUtils.StringPosition source, |
| 337 | boolean isSchemaEvolutionCaseAware, |
| 338 | TypeVisitor visitor) { |
| 339 | findColumn(schema, ParserUtils.splitName(source), isSchemaEvolutionCaseAware, visitor); |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Find a column in a schema by walking down the type tree to find the right column. |
no test coverage detected