duckdb 0.5.2-dev1292.0 → 0.5.2-dev1295.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/duckdb.cpp +11726 -11534
- package/src/duckdb.hpp +12 -2
- package/src/parquet-amalgamation.cpp +37602 -37602
package/src/duckdb.hpp
CHANGED
|
@@ -11,8 +11,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
11
11
|
#pragma once
|
|
12
12
|
#define DUCKDB_AMALGAMATION 1
|
|
13
13
|
#define DUCKDB_AMALGAMATION_EXTENDED 1
|
|
14
|
-
#define DUCKDB_SOURCE_ID "
|
|
15
|
-
#define DUCKDB_VERSION "v0.5.2-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "d3db91ffbf"
|
|
15
|
+
#define DUCKDB_VERSION "v0.5.2-dev1295"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -22876,6 +22876,12 @@ private:
|
|
|
22876
22876
|
|
|
22877
22877
|
void AddCTEMap(CommonTableExpressionMap &cte_map);
|
|
22878
22878
|
|
|
22879
|
+
void ExpandStarExpressions(vector<unique_ptr<ParsedExpression>> &select_list,
|
|
22880
|
+
vector<unique_ptr<ParsedExpression>> &new_select_list);
|
|
22881
|
+
void ExpandStarExpression(unique_ptr<ParsedExpression> expr, vector<unique_ptr<ParsedExpression>> &new_select_list);
|
|
22882
|
+
bool FindStarExpression(ParsedExpression &expr, StarExpression **star);
|
|
22883
|
+
void ReplaceStarExpression(unique_ptr<ParsedExpression> &expr, unique_ptr<ParsedExpression> &replacement);
|
|
22884
|
+
|
|
22879
22885
|
public:
|
|
22880
22886
|
// This should really be a private constructor, but make_shared does not allow it...
|
|
22881
22887
|
// If you are thinking about calling this, you should probably call Binder::CreateBinder
|
|
@@ -29852,6 +29858,10 @@ public:
|
|
|
29852
29858
|
case_insensitive_set_t exclude_list;
|
|
29853
29859
|
//! List of columns to replace with another expression
|
|
29854
29860
|
case_insensitive_map_t<unique_ptr<ParsedExpression>> replace_list;
|
|
29861
|
+
//! Regular expression to select columns (if any)
|
|
29862
|
+
string regex;
|
|
29863
|
+
//! Whether or not this is a COLUMNS expression
|
|
29864
|
+
bool columns = false;
|
|
29855
29865
|
|
|
29856
29866
|
public:
|
|
29857
29867
|
string ToString() const override;
|