Class H2PlainRowFactory
- java.lang.Object
-
- org.h2.result.RowFactory
-
- org.apache.ignite.internal.processors.query.h2.opt.H2PlainRowFactory
-
public class H2PlainRowFactory extends org.h2.result.RowFactoryPlain row factory.
-
-
Constructor Summary
Constructors Constructor Description H2PlainRowFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.h2.result.Rowcreate(int colCnt, org.h2.value.Value... data)static org.h2.result.Rowcreate(org.h2.value.Value v)org.h2.result.RowcreateRow(org.h2.value.Value[] data, int memory)
-
-
-
Method Detail
-
create
public static org.h2.result.Row create(org.h2.value.Value v)
- Parameters:
v- Value.- Returns:
- Row.
-
create
public static org.h2.result.Row create(int colCnt, org.h2.value.Value... data)- Parameters:
colCnt- Requested column count. H2 engine can add extra columns at the end of result set.data- Values.- Returns:
- Row.
- See Also:
ResultInterface.getVisibleColumnCount(),GridH2ValueMessageFactory.toMessages(Collection, int),ResultInterface.currentRow()
-
createRow
public org.h2.result.Row createRow(org.h2.value.Value[] data, int memory)- Specified by:
createRowin classorg.h2.result.RowFactory
-
-