Skip to content

Commit

Permalink
Remove CopyOptions structure
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaruza committed Oct 12, 2024
1 parent c06d699 commit 855b33c
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/utility/copy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,6 @@ static constexpr char s3_filename_prefix[] = "s3://";
static constexpr char gcs_filename_prefix[] = "gs://";
static constexpr char r2_filename_prefix[] = "r2://";

typedef struct DuckdbCopyOptions {
bool csv_mode;
struct CSVOptions {
char *delimiter;
char *null_str;
int null_str_len;
bool include_header;
char *quote;
char *escape;
List *force_quote;
bool force_quote_all;
bool *force_quote_flags;
} csv_options;
} DuckdbCopyOptions;

/*
* Returns the relation of the copy_stmt as a fully qualified DuckDB table reference. This is done
* including the column names if provided in the original copy_stmt, e.g. my_table(column1, column2).
Expand Down

0 comments on commit 855b33c

Please sign in to comment.