|
|
| CopyFunction (const string &name) |
| |
|
DUCKDB_API | Function (string name) |
| |
|
|
copy_to_plan_t | plan |
| | Plan rewrite copy function.
|
| |
|
copy_to_select_t | copy_to_select |
| |
|
copy_to_bind_t | copy_to_bind |
| |
|
copy_options_t | copy_options |
| |
|
copy_to_initialize_local_t | copy_to_initialize_local |
| |
|
copy_to_initialize_global_t | copy_to_initialize_global |
| |
|
copy_to_get_written_statistics_t | copy_to_get_written_statistics |
| |
|
copy_to_sink_t | copy_to_sink |
| |
|
copy_to_combine_t | copy_to_combine |
| |
|
copy_to_finalize_t | copy_to_finalize |
| |
|
copy_to_execution_mode_t | execution_mode |
| |
|
copy_to_initialize_operator_t | initialize_operator |
| |
|
copy_prepare_batch_t | prepare_batch |
| |
|
copy_flush_batch_t | flush_batch |
| |
|
copy_desired_batch_size_t | desired_batch_size |
| |
|
copy_rotate_files_t | rotate_files |
| |
|
copy_rotate_next_file_t | rotate_next_file |
| |
|
copy_to_serialize_t | serialize |
| |
|
copy_to_deserialize_t | deserialize |
| |
|
copy_from_bind_t | copy_from_bind |
| |
|
TableFunction | copy_from_function |
| |
|
string | extension |
| |
|
shared_ptr< CopyFunctionInfo > | function_info |
| | Additional function info, passed to the bind.
|
| |
|
string | name |
| | The name of the function.
|
| |
|
string | extra_info |
| | Additional Information to specify function from it's name.
|
| |
|
string | catalog_name |
| |
|
string | schema_name |
| |
|
|
static DUCKDB_API string | CallToString (const string &catalog_name, const string &schema_name, const string &name, const vector< LogicalType > &arguments, const LogicalType &varargs=LogicalType::INVALID) |
| | Returns the formatted string name(arg1, arg2, ...)
|
| |
|
static DUCKDB_API string | CallToString (const string &catalog_name, const string &schema_name, const string &name, const vector< LogicalType > &arguments, const LogicalType &varargs, const LogicalType &return_type) |
| | Returns the formatted string name(arg1, arg2..) -> return_type.
|
| |
|
static DUCKDB_API string | CallToString (const string &catalog_name, const string &schema_name, const string &name, const vector< LogicalType > &arguments, const named_parameter_type_map_t &named_parameters) |
| | Returns the formatted string name(arg1, arg2.., np1=a, np2=b, ...)
|
| |
|
static DUCKDB_API void | EraseArgument (SimpleFunction &bound_function, vector< unique_ptr< Expression > > &arguments, idx_t argument_index) |
| | Used in the bind to erase an argument from a function.
|
| |
The documentation for this class was generated from the following file: