Uses of Class
org.h2.table.IndexHints
-
Packages that use IndexHints Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.table Classes related to a table and table meta data. -
-
Uses of IndexHints in org.h2.command
Methods in org.h2.command that return IndexHints Modifier and Type Method Description private IndexHints
Parser. parseIndexHints(Table table)
Methods in org.h2.command with parameters of type IndexHints Modifier and Type Method Description private TableFilter
Parser. buildTableFilter(Table table, java.lang.String alias, java.util.ArrayList<java.lang.String> derivedColumnNames, IndexHints indexHints)
-
Uses of IndexHints in org.h2.table
Fields in org.h2.table declared as IndexHints Modifier and Type Field Description private IndexHints
TableFilter. indexHints
Methods in org.h2.table that return IndexHints Modifier and Type Method Description static IndexHints
IndexHints. createUseIndexHints(java.util.LinkedHashSet<java.lang.String> allowedIndexes)
Create an index hint object.private static IndexHints
Table. getIndexHints(TableFilter[] filters, int filter)
IndexHints
TableFilter. getIndexHints()
Methods in org.h2.table with parameters of type IndexHints Modifier and Type Method Description private static boolean
Table. isIndexExcludedByHints(IndexHints indexHints, Index index)
Constructors in org.h2.table with parameters of type IndexHints Constructor Description TableFilter(SessionLocal session, Table table, java.lang.String alias, boolean rightsChecked, Select select, int orderInFrom, IndexHints indexHints)
Create a new table filter object.
-