duckdb 0.5.2-dev1411.0 → 0.5.2-dev1445.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/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 "270b5842f0"
15
- #define DUCKDB_VERSION "v0.5.2-dev1411"
14
+ #define DUCKDB_SOURCE_ID "f3ebda949f"
15
+ #define DUCKDB_VERSION "v0.5.2-dev1445"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -30422,6 +30422,8 @@ struct CreateTypeInfo : public CreateInfo {
30422
30422
  string name;
30423
30423
  //! Logical Type
30424
30424
  LogicalType type;
30425
+ //! Used by create enum from query
30426
+ unique_ptr<SQLStatement> query;
30425
30427
 
30426
30428
  public:
30427
30429
  unique_ptr<CreateInfo> Copy() const override {
@@ -30429,6 +30431,9 @@ public:
30429
30431
  CopyProperties(*result);
30430
30432
  result->name = name;
30431
30433
  result->type = type;
30434
+ if (query) {
30435
+ result->query = query->Copy();
30436
+ }
30432
30437
  return move(result);
30433
30438
  }
30434
30439