Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::CreateInfo Struct Referenceabstract
Inheritance diagram for duckdb::CreateInfo:
Collaboration diagram for duckdb::CreateInfo:

Public Member Functions

 CreateInfo (CatalogType type, string schema=DEFAULT_SCHEMA, string catalog_p=INVALID_CATALOG)
 
void Serialize (Serializer &serializer) const override
 
virtual unique_ptr< CreateInfoCopy () const =0
 
DUCKDB_API void CopyProperties (CreateInfo &other) const
 
virtual DUCKDB_API unique_ptr< AlterInfoGetAlterInfo () const
 Generates an alter statement from the create statement - used for OnCreateConflict::ALTER_ON_CONFLICT.
 
DUCKDB_API string GetCreatePrefix (const string &entry) const
 Returns a string like "CREATE (OR REPLACE) (TEMPORARY) <entry> (IF NOT EXISTS) " for TABLE/VIEW/TYPE/MACRO.
 
virtual string ToString () const
 
- Public Member Functions inherited from duckdb::ParseInfo
 ParseInfo (ParseInfoType info_type)
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 

Static Public Member Functions

static unique_ptr< CreateInfoDeserialize (Deserializer &deserializer)
 
- Static Public Member Functions inherited from duckdb::ParseInfo
static unique_ptr< ParseInfoDeserialize (Deserializer &deserializer)
 
static string QualifierToString (const string &catalog, const string &schema, const string &name)
 
static string TypeToString (CatalogType type)
 

Public Attributes

CatalogType type
 The to-be-created catalog type.
 
string catalog
 The catalog name of the entry.
 
string schema
 The schema name of the entry.
 
OnCreateConflict on_conflict
 What to do on create conflict.
 
bool temporary
 Whether or not the entry is temporary.
 
bool internal
 Whether or not the entry is an internal entry.
 
string sql
 The SQL string of the CREATE statement.
 
LogicalDependencyList dependencies
 The inherent dependencies of the created entry.
 
Value comment
 User provided comment.
 
InsertionOrderPreservingMap< string > tags
 Key-value tags with additional metadata.
 
- Public Attributes inherited from duckdb::ParseInfo
ParseInfoType info_type
 

Static Public Attributes

static constexpr const ParseInfoType TYPE = ParseInfoType::CREATE_INFO
 

Constructor & Destructor Documentation

◆ CreateInfo()

duckdb::CreateInfo::CreateInfo ( CatalogType  type,
string  schema = DEFAULT_SCHEMA,
string  catalog_p = INVALID_CATALOG 
)
inlineexplicit
28151 : ParseInfo(TYPE), type(type), catalog(std::move(catalog_p)), schema(std::move(schema)),
28152 on_conflict(OnCreateConflict::ERROR_ON_CONFLICT), temporary(false), internal(false) {
28153 }
TYPE
bool temporary
Whether or not the entry is temporary.
Definition duckdb.hpp:28166
bool internal
Whether or not the entry is an internal entry.
Definition duckdb.hpp:28168
string catalog
The catalog name of the entry.
Definition duckdb.hpp:28160
OnCreateConflict on_conflict
What to do on create conflict.
Definition duckdb.hpp:28164
CatalogType type
The to-be-created catalog type.
Definition duckdb.hpp:28158
string schema
The schema name of the entry.
Definition duckdb.hpp:28162

◆ ~CreateInfo()

duckdb::CreateInfo::~CreateInfo ( )
inlineoverride
28154 {
28155 }

Member Function Documentation

◆ Serialize()

void duckdb::CreateInfo::Serialize ( Serializer serializer) const
overridevirtual

Reimplemented from duckdb::ParseInfo.

◆ GetAlterInfo()

virtual DUCKDB_API unique_ptr< AlterInfo > duckdb::CreateInfo::GetAlterInfo ( ) const
virtual

Generates an alter statement from the create statement - used for OnCreateConflict::ALTER_ON_CONFLICT.

Reimplemented in duckdb::CreateScalarFunctionInfo, and duckdb::CreateTableFunctionInfo.

Here is the caller graph for this function:

◆ ToString()

virtual string duckdb::CreateInfo::ToString ( ) const
inlinevirtual
28190 {
28191 throw NotImplementedException("ToString not supported for this type of CreateInfo: '%s'",
28192 EnumUtil::ToString(info_type));
28193 }

The documentation for this struct was generated from the following file: