◆ BindResult() [1/5]
| duckdb::BindResult::BindResult |
( |
| ) |
|
|
inline |
◆ BindResult() [2/5]
1064 : error(ex) {
1065 }
◆ BindResult() [3/5]
| duckdb::BindResult::BindResult |
( |
const string & |
error_msg | ) |
|
|
inlineexplicit |
1066 : error(ExceptionType::BINDER, error_msg) {
1067 }
◆ BindResult() [4/5]
| duckdb::BindResult::BindResult |
( |
ErrorData |
error | ) |
|
|
inlineexplicit |
1068 : error(std::move(error)) {
1069 }
◆ BindResult() [5/5]
1070 : expression(std::move(expr)) {
1071 }
◆ HasError()
| bool duckdb::BindResult::HasError |
( |
| ) |
const |
|
inline |
1073 {
1075 }
bool HasError() const
Returns true, if this error data contains an exception, else false.
Definition duckdb.hpp:6527
◆ SetError()
| void duckdb::BindResult::SetError |
( |
const string & |
error_message | ) |
|
|
inline |
1076 {
1077 error = ErrorData(ExceptionType::BINDER, error_message);
1078 }
The documentation for this struct was generated from the following file:
- external/duckdb/duckdb.cpp