Searched refs:userColumn (Results 1 – 1 of 1) sorted by relevance
1137 private @NonNull String computeSingleProjectionOrThrow(@NonNull String userColumn) { in computeSingleProjectionOrThrow() argument1138 final String column = computeSingleProjection(userColumn); in computeSingleProjectionOrThrow()1142 throw new IllegalArgumentException("Invalid column " + userColumn); in computeSingleProjectionOrThrow()1146 private @Nullable String computeSingleProjection(@NonNull String userColumn) { in computeSingleProjection() argument1149 return userColumn; in computeSingleProjection()1153 String column = mProjectionMap.get(userColumn); in computeSingleProjection()1157 final Matcher matcher = sAggregationPattern.matcher(userColumn); in computeSingleProjection()1160 userColumn = matcher.group(2); in computeSingleProjection()1161 column = mProjectionMap.get(userColumn); in computeSingleProjection()1170 && (userColumn.contains(" AS ") || userColumn.contains(" as "))) { in computeSingleProjection()[all …]