Package org.h2.fulltext
Class IndexInfo
- java.lang.Object
-
- org.h2.fulltext.IndexInfo
-
public class IndexInfo extends java.lang.ObjectThe settings of one full text search index.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String[]columnsThe column names.protected intidThe index id.protected int[]indexColumnsThe column indexes of the index columns.protected int[]keysThe column indexes of the key columns.protected java.lang.StringschemaThe schema name.protected java.lang.StringtableThe table name.
-
Constructor Summary
Constructors Constructor Description IndexInfo()
-
-
-
Field Detail
-
id
protected int id
The index id.
-
schema
protected java.lang.String schema
The schema name.
-
table
protected java.lang.String table
The table name.
-
keys
protected int[] keys
The column indexes of the key columns.
-
indexColumns
protected int[] indexColumns
The column indexes of the index columns.
-
columns
protected java.lang.String[] columns
The column names.
-
-