Package | Description |
---|---|
org.apache.manifoldcf.core.database | |
org.apache.manifoldcf.core.interfaces |
Modifier and Type | Method and Description |
---|---|
Map<String,IndexDescription> |
DBInterfaceDerby.getTableIndexes(String tableName,
StringSet cacheKeys,
String queryClass)
Get a table's indexes.
|
Map<String,IndexDescription> |
DBInterfaceHSQLDB.getTableIndexes(String tableName,
StringSet cacheKeys,
String queryClass)
Get a table's indexes.
|
Map<String,IndexDescription> |
DBInterfaceMySQL.getTableIndexes(String tableName,
StringSet cacheKeys,
String queryClass)
Get a table's indexes.
|
Map<String,IndexDescription> |
DBInterfacePostgreSQL.getTableIndexes(String tableName,
StringSet cacheKeys,
String queryClass)
Get a table's indexes.
|
Modifier and Type | Method and Description |
---|---|
String |
DBInterfaceMySQL.constructIndexHintClause(String tableName,
IndexDescription description)
Construct index hint clause.
|
String |
Database.constructIndexHintClause(String tableName,
IndexDescription description)
Construct index hint clause.
|
protected void |
BaseTable.performAddIndex(String indexName,
IndexDescription description)
Add an index to a table.
|
void |
DBInterfaceDerby.performAddIndex(String indexName,
String tableName,
IndexDescription description)
Add an index to a table.
|
void |
DBInterfaceHSQLDB.performAddIndex(String indexName,
String tableName,
IndexDescription description)
Add an index to a table.
|
void |
DBInterfaceMySQL.performAddIndex(String indexName,
String tableName,
IndexDescription description)
Add an index to a table.
|
void |
DBInterfacePostgreSQL.performAddIndex(String indexName,
String tableName,
IndexDescription description)
Add an index to a table.
|
Modifier and Type | Method and Description |
---|---|
Map<String,IndexDescription> |
IDBInterface.getTableIndexes(String tableName,
StringSet cacheKeys,
String queryClass)
Get a table's indexes.
|
Modifier and Type | Method and Description |
---|---|
String |
IDBInterface.constructIndexHintClause(String tableName,
IndexDescription description)
Construct index hint clause.
|
void |
IDBInterface.performAddIndex(String indexName,
String tableName,
IndexDescription description)
Add an index to a table.
|