Searched refs:userColumn (Results 1 – 1 of 1) sorted by relevance
1117 private @NonNull String computeSingleProjectionOrThrow(@NonNull String userColumn) { in computeSingleProjectionOrThrow() argument1118 final String column = computeSingleProjection(userColumn); in computeSingleProjectionOrThrow()1122 throw new IllegalArgumentException("Invalid column " + userColumn); in computeSingleProjectionOrThrow()1126 private @Nullable String computeSingleProjection(@NonNull String userColumn) { in computeSingleProjection() argument1129 return userColumn; in computeSingleProjection()1133 String column = mProjectionMap.get(userColumn); in computeSingleProjection()1137 final Matcher matcher = sAggregationPattern.matcher(userColumn); in computeSingleProjection()1140 userColumn = matcher.group(2); in computeSingleProjection()1141 column = mProjectionMap.get(userColumn); in computeSingleProjection()1150 (userColumn.contains(" AS ") || userColumn.contains(" as "))) { in computeSingleProjection()[all …]