From 855b33cd6a85d074c5490230ec7e6a1ae0b07b0e Mon Sep 17 00:00:00 2001 From: mkaruza Date: Sat, 12 Oct 2024 13:19:00 +0200 Subject: [PATCH] Remove CopyOptions structure --- src/utility/copy.cpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/utility/copy.cpp b/src/utility/copy.cpp index 40e5cda5..7d071db0 100644 --- a/src/utility/copy.cpp +++ b/src/utility/copy.cpp @@ -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).