Class H2Row
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.h2.opt.H2Row
-
- All Implemented Interfaces:
org.h2.result.Row,org.h2.result.SearchRow
- Direct Known Subclasses:
H2CacheRow,H2PlainRow,H2PlainRowPair,H2PlainRowSingle
public abstract class H2Row extends Object implements org.h2.result.Row
Dummy H2 search row adadpter.
-
-
Constructor Summary
Constructors Constructor Description H2Row()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidcommit()longexpireTime()intgetByteCount(org.h2.store.Data dummy)org.h2.result.RowgetCopy()longgetKey()intgetMemory()intgetSessionId()org.h2.value.Value[]getValueList()intgetVersion()abstract booleanindexSearchRow()booleanisDeleted()booleanisEmpty()voidsetDeleted(boolean deleted)voidsetKey(long key)voidsetKeyAndVersion(org.h2.result.SearchRow old)voidsetSessionId(int sessionId)voidsetVersion(int version)
-
-
-
Method Detail
-
setKeyAndVersion
public void setKeyAndVersion(org.h2.result.SearchRow old)
- Specified by:
setKeyAndVersionin interfaceorg.h2.result.SearchRow
-
getVersion
public int getVersion()
- Specified by:
getVersionin interfaceorg.h2.result.SearchRow
-
setKey
public void setKey(long key)
- Specified by:
setKeyin interfaceorg.h2.result.SearchRow
-
getKey
public long getKey()
- Specified by:
getKeyin interfaceorg.h2.result.SearchRow
-
getMemory
public int getMemory()
- Specified by:
getMemoryin interfaceorg.h2.result.SearchRow
-
getCopy
public org.h2.result.Row getCopy()
- Specified by:
getCopyin interfaceorg.h2.result.Row
-
setVersion
public void setVersion(int version)
- Specified by:
setVersionin interfaceorg.h2.result.Row
-
getByteCount
public int getByteCount(org.h2.store.Data dummy)
- Specified by:
getByteCountin interfaceorg.h2.result.Row
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceorg.h2.result.Row
-
setDeleted
public void setDeleted(boolean deleted)
- Specified by:
setDeletedin interfaceorg.h2.result.Row
-
setSessionId
public void setSessionId(int sessionId)
- Specified by:
setSessionIdin interfaceorg.h2.result.Row
-
getSessionId
public int getSessionId()
- Specified by:
getSessionIdin interfaceorg.h2.result.Row
-
commit
public void commit()
- Specified by:
commitin interfaceorg.h2.result.Row
-
isDeleted
public boolean isDeleted()
- Specified by:
isDeletedin interfaceorg.h2.result.Row
-
getValueList
public org.h2.value.Value[] getValueList()
- Specified by:
getValueListin interfaceorg.h2.result.Row
-
expireTime
public long expireTime()
- Returns:
- Expire time.
-
indexSearchRow
public abstract boolean indexSearchRow()
- Returns:
Truefor rows used for index search.
-
-