Uses of Record Class
com.loomcache.server.query.SqlRow
Packages that use SqlRow
-
Uses of SqlRow in com.loomcache.server.query
Classes in com.loomcache.server.query that implement interfaces with type arguments of type SqlRowMethods in com.loomcache.server.query that return SqlRowModifier and TypeMethodDescriptionstatic SqlRowCreates a new SqlRow from a map of column name → value.static SqlRowQueryEngine.projectColumns(SqlRow row, List<String> selectedColumns) Projects a row to include only selected columns.Methods in com.loomcache.server.query that return types with arguments of type SqlRowModifier and TypeMethodDescriptionstatic Comparator<SqlRow> QueryEngine.buildOrderByComparator(List<QueryPlan.OrderBy> orderByList) Applies ORDER BY clauses to a list of rows using a single composite comparator.JoinExecutor.executeJoin(List<SqlRow> leftRows, List<SqlRow> rightRows, QueryPlan.Join join) Executes a single join between two rowsets.QueryExecutionCache.getIfPresent(String sql) Returns a cached result if available and not expired, or null.SqlResult.iterator()Returns an iterator over the result rows.SqlResult.toList()Consumes all remaining rows and returns them as a list.Methods in com.loomcache.server.query with parameters of type SqlRowModifier and TypeMethodDescriptionbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleanbooleandefault booleanbooleanTests whether the given pair of rows matches this join predicate.booleanbooleanbooleanbooleanTests whether the given row matches this predicate.booleanbooleanbooleanbooleanbooleanbooleanstatic SqlRowQueryEngine.projectColumns(SqlRow row, List<String> selectedColumns) Projects a row to include only selected columns.static intQueryEngine.validateProjectedRowWidth(SqlRow row) Method parameters in com.loomcache.server.query with type arguments of type SqlRowModifier and TypeMethodDescriptionvoidCaches a query result.JoinExecutor.executeJoin(List<SqlRow> leftRows, List<SqlRow> rightRows, QueryPlan.Join join) Executes a single join between two rowsets.QueryEngine.getColumnNames(List<SqlRow> rows) static List<SqlColumnType> QueryEngine.getColumnTypes(List<SqlRow> rows) Constructor parameters in com.loomcache.server.query with type arguments of type SqlRowModifierConstructorDescriptionSqlResult(List<String> columnNames, List<SqlColumnType> columnTypes, Iterator<SqlRow> rowIterator, int estimatedRowCount) Creates a new SqlResult.SqlResult(List<String> columnNames, List<SqlColumnType> columnTypes, Iterator<SqlRow> rowIterator, int estimatedRowCount, boolean truncated) Creates a new SqlResult.