|
|
VectorAuxiliaryDataType | type |
| |
◆ VectorAuxiliaryData()
| duckdb::VectorAuxiliaryData::VectorAuxiliaryData |
( |
VectorAuxiliaryDataType |
type_p | ) |
|
|
inlineexplicit |
9980 : type(type_p) {
9981
9982 };
◆ ~VectorAuxiliaryData()
| virtual duckdb::VectorAuxiliaryData::~VectorAuxiliaryData |
( |
| ) |
|
|
inlinevirtual |
◆ Cast() [1/2]
| TARGET & duckdb::VectorAuxiliaryData::Cast |
( |
| ) |
|
|
inline |
9990 {
9991 if (type != TARGET::TYPE) {
9992 throw InternalException("Failed to cast vector auxiliary data to type - type mismatch");
9993 }
9994 return reinterpret_cast<TARGET &>(*this);
9995 }
◆ Cast() [2/2]
| const TARGET & duckdb::VectorAuxiliaryData::Cast |
( |
| ) |
const |
|
inline |
9998 {
9999 if (type != TARGET::TYPE) {
10000 throw InternalException("Failed to cast vector auxiliary data to type - type mismatch");
10001 }
10002 return reinterpret_cast<const TARGET &>(*this);
10003 }
The documentation for this struct was generated from the following file: