duckdb 0.3.5-dev1086.0 → 0.3.5-dev1125.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 "f14371b85"
15
- #define DUCKDB_VERSION "v0.3.5-dev1086"
14
+ #define DUCKDB_SOURCE_ID "e2e7520ec"
15
+ #define DUCKDB_VERSION "v0.3.5-dev1125"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -1047,8 +1047,12 @@ struct LogicalType {
1047
1047
  DUCKDB_API bool IsIntegral() const;
1048
1048
  DUCKDB_API bool IsNumeric() const;
1049
1049
  DUCKDB_API hash_t Hash() const;
1050
+ DUCKDB_API void SetAlias(string &alias);
1051
+ DUCKDB_API string GetAlias() const;
1050
1052
 
1051
1053
  DUCKDB_API static LogicalType MaxLogicalType(const LogicalType &left, const LogicalType &right);
1054
+ DUCKDB_API static void SetCatalog(LogicalType &type, TypeCatalogEntry* catalog_entry);
1055
+ DUCKDB_API static TypeCatalogEntry* GetCatalog(const LogicalType &type);
1052
1056
 
1053
1057
  //! Gets the decimal properties of a numeric type. Fails if the type is not numeric.
1054
1058
  DUCKDB_API bool GetDecimalProperties(uint8_t &width, uint8_t &scale) const;
@@ -15169,8 +15173,8 @@ private:
15169
15173
  void AdjustTableDependencies(CatalogEntry *entry);
15170
15174
  //! Adjust one dependency
15171
15175
  void AdjustDependency(CatalogEntry *entry, TableCatalogEntry *table, ColumnDefinition &column, bool remove);
15172
- //! Adjust Enum dependency
15173
- void AdjustEnumDependency(CatalogEntry *entry, ColumnDefinition &column, bool remove);
15176
+ //! Adjust User dependency
15177
+ void AdjustUserDependency(CatalogEntry *entry, ColumnDefinition &column, bool remove);
15174
15178
  //! Given a root entry, gets the entry valid for this transaction
15175
15179
  CatalogEntry *GetEntryForTransaction(ClientContext &context, CatalogEntry *current);
15176
15180
  CatalogEntry *GetCommittedEntry(CatalogEntry *current);