MCPcopy Index your code
hub / github.com/apache/orc / findColumn

Method findColumn

java/core/src/java/org/apache/orc/impl/ParserUtils.java:335–340  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 2

findSubtypeMethod · 0.95
findColumnVectorsMethod · 0.95

Calls 12

splitNameMethod · 0.95
findSubtypeMethod · 0.95
getCategoryMethod · 0.95
getFieldNamesMethod · 0.95
findCaseInsensitiveMethod · 0.95
getChildrenMethod · 0.95
parseIntMethod · 0.80
indexOfMethod · 0.80
sizeMethod · 0.65
visitMethod · 0.65
getMethod · 0.45
equalsMethod · 0.45

Tested by

no test coverage detected