◆ Apply()
27844 {
27845 Merge(other.Value());
27846 return *this;
27847 }
◆ IsBlocking()
| bool duckdb::DependencyDependentFlags::IsBlocking |
( |
| ) |
const |
|
inline |
27850 {
27851 return IsSet<BLOCKING>();
27852 }
◆ IsOwnedBy()
| bool duckdb::DependencyDependentFlags::IsOwnedBy |
( |
| ) |
const |
|
inline |
27853 {
27854 return IsSet<OWNED_BY>();
27855 }
◆ SetBlocking()
27858 {
27859 Set<BLOCKING>();
27860 return *this;
27861 }
◆ SetOwnedBy()
27862 {
27863 Set<OWNED_BY>();
27864 return *this;
27865 }
◆ ToString()
| string duckdb::DependencyDependentFlags::ToString |
( |
| ) |
const |
|
inlineoverridevirtual |
Implements duckdb::DependencyFlags.
27868 {
27869 string result;
27870 if (IsBlocking()) {
27871 result += "REGULAR";
27872 } else {
27873 result += "AUTOMATIC";
27874 }
27875 result += " | ";
27876 if (IsOwnedBy()) {
27877 result += "OWNED BY";
27878 }
27879 return result;
27880 }
The documentation for this struct was generated from the following file: