quasardb 3.14.1.dev6__cp312-cp312-win_amd64.whl → 3.14.2.dev0__cp312-cp312-win_amd64.whl

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.

Potentially problematic release.


This version of quasardb might be problematic. Click here for more details.

Files changed (50) hide show
  1. quasardb/CMakeLists.txt +1 -1
  2. quasardb/__init__.py +1 -1
  3. quasardb/batch_column.hpp +1 -1
  4. quasardb/batch_inserter.hpp +1 -1
  5. quasardb/blob.hpp +1 -1
  6. quasardb/cluster.hpp +1 -1
  7. quasardb/continuous.hpp +1 -1
  8. quasardb/convert/array.hpp +1 -1
  9. quasardb/convert/point.hpp +1 -1
  10. quasardb/convert/range.hpp +1 -1
  11. quasardb/convert/value.hpp +1 -1
  12. quasardb/convert.hpp +1 -1
  13. quasardb/detail/qdb_resource.hpp +11 -1
  14. quasardb/detail/ts_column.hpp +1 -1
  15. quasardb/direct_blob.hpp +1 -1
  16. quasardb/direct_handle.hpp +1 -1
  17. quasardb/direct_integer.hpp +1 -1
  18. quasardb/double.hpp +1 -1
  19. quasardb/entry.hpp +1 -1
  20. quasardb/error.hpp +1 -1
  21. quasardb/handle.hpp +1 -1
  22. quasardb/integer.hpp +1 -1
  23. quasardb/logger.hpp +1 -1
  24. quasardb/masked_array.hpp +1 -1
  25. quasardb/metrics.hpp +1 -1
  26. quasardb/node.hpp +1 -1
  27. quasardb/numpy.hpp +1 -1
  28. quasardb/options.hpp +1 -1
  29. quasardb/pandas/__init__.py +1 -1
  30. quasardb/perf.hpp +1 -1
  31. quasardb/pytypes.hpp +1 -1
  32. quasardb/qdb_api.dll +0 -0
  33. quasardb/quasardb.cp312-win_amd64.pyd +0 -0
  34. quasardb/query.cpp +1 -1
  35. quasardb/query.hpp +1 -1
  36. quasardb/reader/ts_row.hpp +1 -1
  37. quasardb/reader/ts_value.hpp +1 -1
  38. quasardb/string.hpp +1 -1
  39. quasardb/table.cpp +14 -6
  40. quasardb/table.hpp +71 -21
  41. quasardb/table_reader.hpp +1 -1
  42. quasardb/tag.hpp +1 -1
  43. quasardb/timestamp.hpp +1 -1
  44. quasardb/utils.hpp +1 -1
  45. quasardb/writer.hpp +1 -1
  46. {quasardb-3.14.1.dev6.dist-info → quasardb-3.14.2.dev0.dist-info}/LICENSE.md +1 -1
  47. {quasardb-3.14.1.dev6.dist-info → quasardb-3.14.2.dev0.dist-info}/METADATA +1 -1
  48. {quasardb-3.14.1.dev6.dist-info → quasardb-3.14.2.dev0.dist-info}/RECORD +50 -50
  49. {quasardb-3.14.1.dev6.dist-info → quasardb-3.14.2.dev0.dist-info}/WHEEL +0 -0
  50. {quasardb-3.14.1.dev6.dist-info → quasardb-3.14.2.dev0.dist-info}/top_level.txt +0 -0
quasardb/CMakeLists.txt CHANGED
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.9.4)
2
2
  project(quasardb)
3
3
  set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
4
4
  set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
5
- set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14")
5
+ set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0")
6
6
  set(CMAKE_VERBOSE_MAKEFILE FALSE)
7
7
 
8
8
  include(CheckIPOSupported)
quasardb/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # pylint: disable=C0103,C0111,C0302,R0903
2
2
 
3
- # Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
3
+ # Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
4
4
  # All rights reserved.
5
5
  #
6
6
  # Redistribution and use in source and binary forms, with or without
quasardb/batch_column.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/blob.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/cluster.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/continuous.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/convert.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -104,6 +104,16 @@ public:
104
104
  return *p_;
105
105
  }
106
106
 
107
+ ValueType * operator->()
108
+ {
109
+ return p_;
110
+ }
111
+
112
+ constexpr ValueType const * operator->() const
113
+ {
114
+ return p_;
115
+ }
116
+
107
117
  constexpr ValueType const & operator*() const
108
118
  {
109
119
  return *p_;
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/direct_blob.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/double.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/entry.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/error.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/handle.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/integer.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/logger.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/masked_array.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/metrics.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/node.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/numpy.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/options.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -1,6 +1,6 @@
1
1
  # pylint: disable=C0103,C0111,C0302,R0903
2
2
 
3
- # Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
3
+ # Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
4
4
  # All rights reserved.
5
5
  #
6
6
  # Redistribution and use in source and binary forms, with or without
quasardb/perf.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/pytypes.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/qdb_api.dll CHANGED
Binary file
Binary file
quasardb/query.cpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/query.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/string.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/table.cpp CHANGED
@@ -69,18 +69,17 @@ inline void insert_column_dispatch(handle_ptr handle,
69
69
 
70
70
  }; // namespace detail
71
71
 
72
- void table::_cache_columns() const
72
+ void table::_cache_metadata() const
73
73
  {
74
74
  _handle->check_open();
75
75
 
76
- detail::qdb_resource<qdb_ts_column_info_ex_t> columns{*_handle};
77
- qdb_size_t count = 0;
76
+ detail::qdb_resource<qdb_ts_metadata_t> metadata{*_handle};
78
77
 
79
78
  qdb_error_t err;
80
79
 
81
80
  {
82
- metrics::scoped_capture("qdb_ts_list_columns");
83
- err = qdb_ts_list_columns_ex(*_handle, _alias.c_str(), &columns, &count);
81
+ metrics::scoped_capture("qdb_ts_get_metadata");
82
+ err = qdb_ts_get_metadata(*_handle, _alias.c_str(), &metadata);
84
83
  }
85
84
 
86
85
  if (err == qdb_e_alias_not_found) [[unlikely]]
@@ -91,7 +90,16 @@ void table::_cache_columns() const
91
90
 
92
91
  qdb::qdb_throw_if_error(*_handle, err);
93
92
 
94
- _columns = detail::convert_columns(columns.get(), count);
93
+ _columns = detail::convert_columns(metadata->columns, metadata->column_count);
94
+
95
+ if (metadata->ttl == qdb_ttl_disabled)
96
+ {
97
+ _ttl = std::chrono::milliseconds{0};
98
+ }
99
+ else
100
+ {
101
+ _ttl = std::chrono::milliseconds{metadata->ttl};
102
+ }
95
103
  }
96
104
 
97
105
  py::object table::reader(
quasardb/table.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -44,7 +44,7 @@ public:
44
44
  : entry{h, a}
45
45
  , _has_indexed_columns(false)
46
46
  {
47
- _cache_columns();
47
+ _cache_metadata();
48
48
  }
49
49
 
50
50
  public:
@@ -58,17 +58,24 @@ public:
58
58
  */
59
59
  void retrieve_metadata()
60
60
  {
61
- _cache_columns();
61
+ _cache_metadata();
62
62
  }
63
63
 
64
64
  void create(const std::vector<detail::column_info> & columns,
65
- std::chrono::milliseconds shard_size = std::chrono::hours{24})
65
+ std::chrono::milliseconds shard_size = std::chrono::hours{24},
66
+ std::chrono::milliseconds ttl = std::chrono::milliseconds::zero())
66
67
  {
67
68
  _handle->check_open();
68
69
 
70
+ qdb_duration_t ttl_ = qdb_ttl_disabled;
71
+ if (ttl != std::chrono::milliseconds::zero())
72
+ {
73
+ ttl_ = ttl.count();
74
+ }
75
+
69
76
  const auto c_columns = detail::convert_columns_ex(columns);
70
77
  qdb::qdb_throw_if_error(*_handle, qdb_ts_create_ex(*_handle, _alias.c_str(), shard_size.count(),
71
- c_columns.data(), c_columns.size(), qdb_ttl_disabled));
78
+ c_columns.data(), c_columns.size(), ttl_));
72
79
  }
73
80
 
74
81
  void insert_columns(const std::vector<detail::column_info> & columns)
@@ -87,7 +94,7 @@ public:
87
94
  return _columns.value();
88
95
  }
89
96
 
90
- _cache_columns();
97
+ _cache_metadata();
91
98
 
92
99
  if (_columns.has_value()) [[likely]]
93
100
  {
@@ -152,20 +159,59 @@ public:
152
159
  py::object reader(
153
160
  const std::vector<std::string> & columns, py::object obj_ranges, bool dict_mode) const;
154
161
 
162
+ /**
163
+ * Returns true if this table has a TTL assigned.
164
+ */
165
+ inline bool has_ttl() const
166
+ {
167
+ if (_ttl.has_value()) [[likely]]
168
+ {
169
+ return _ttl.value() != std::chrono::milliseconds::zero();
170
+ }
171
+
172
+ _cache_metadata();
173
+
174
+ if (_ttl.has_value()) [[likely]]
175
+ {
176
+ return _ttl.value() != std::chrono::milliseconds::zero();
177
+ }
178
+
179
+ throw qdb::alias_not_found_exception{};
180
+ }
181
+
182
+ inline std::chrono::milliseconds get_ttl() const
183
+ {
184
+ if (_ttl.has_value()) [[likely]]
185
+ {
186
+ return _ttl.value();
187
+ }
188
+
189
+ _cache_metadata();
190
+
191
+ if (_ttl.has_value()) [[likely]]
192
+ {
193
+ return _ttl.value();
194
+ }
195
+
196
+ throw qdb::alias_not_found_exception{};
197
+ }
198
+
155
199
  private:
156
200
  /**
157
201
  * Loads column info / metadata from server and caches it locally.
158
202
  */
159
- void _cache_columns() const;
203
+ void _cache_metadata() const;
160
204
 
161
205
  /**
162
206
  * Loads column info / metadata from server if not yet cached locally.
163
207
  */
164
- void _maybe_cache_columns() const
208
+ void _maybe_cache_metadata() const
165
209
  {
166
210
  if (_columns.has_value() == false) [[unlikely]]
167
211
  {
168
- _cache_columns();
212
+ // We expect _ttl and _columns to have the same state
213
+ assert(_ttl.has_value() == false);
214
+ _cache_metadata();
169
215
  }
170
216
  }
171
217
 
@@ -217,6 +263,7 @@ private:
217
263
  mutable detail::indexed_columns_t _indexed_columns;
218
264
 
219
265
  mutable std::optional<std::vector<detail::column_info>> _columns;
266
+ mutable std::optional<std::chrono::milliseconds> _ttl;
220
267
  };
221
268
 
222
269
  template <typename Module>
@@ -235,18 +282,21 @@ static inline void register_table(Module & m)
235
282
 
236
283
  py::class_<qdb::table, qdb::entry>{m, "Table", "Table representation"} //
237
284
  .def(py::init<qdb::handle_ptr, std::string>()) //
238
- .def("__repr__", &qdb::table::repr)
239
- .def("create", &qdb::table::create, py::arg("columns"),
240
- py::arg("shard_size") = std::chrono::hours{24}) //
241
- .def("get_name", &qdb::table::get_name) //
242
- .def("retrieve_metadata", &qdb::table::retrieve_metadata) //
243
- .def("column_index_by_id", &qdb::table::column_index_by_id) //
244
- .def("column_type_by_id", &qdb::table::column_type_by_id) //
245
- .def("column_info_by_index", &qdb::table::column_info_by_index) //
246
- .def("column_type_by_index", &qdb::table::column_type_by_index) //
247
- .def("column_id_by_index", &qdb::table::column_id_by_index) //
248
- .def("insert_columns", &qdb::table::insert_columns) //
249
- .def("list_columns", &qdb::table::list_columns) //
285
+ .def("__repr__", &qdb::table::repr) //
286
+ .def("create", &qdb::table::create, py::arg("columns"), //
287
+ py::arg("shard_size") = std::chrono::hours{24}, //
288
+ py::arg("ttl") = std::chrono::milliseconds::zero()) //
289
+ .def("get_name", &qdb::table::get_name) //
290
+ .def("retrieve_metadata", &qdb::table::retrieve_metadata) //
291
+ .def("column_index_by_id", &qdb::table::column_index_by_id) //
292
+ .def("column_type_by_id", &qdb::table::column_type_by_id) //
293
+ .def("column_info_by_index", &qdb::table::column_info_by_index) //
294
+ .def("column_type_by_index", &qdb::table::column_type_by_index) //
295
+ .def("column_id_by_index", &qdb::table::column_id_by_index) //
296
+ .def("insert_columns", &qdb::table::insert_columns) //
297
+ .def("list_columns", &qdb::table::list_columns) //
298
+ .def("has_ttl", &qdb::table::has_ttl) //
299
+ .def("get_ttl", &qdb::table::get_ttl) //
250
300
 
251
301
  // We cannot initialize columns with all columns by default, because i don't
252
302
  // see a way to figure out the `this` address for qdb_ts_reader for the default
quasardb/table_reader.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/tag.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/timestamp.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/utils.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
quasardb/writer.hpp CHANGED
@@ -2,7 +2,7 @@
2
2
  *
3
3
  * Official Python API
4
4
  *
5
- * Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
5
+ * Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
6
6
  * All rights reserved.
7
7
  *
8
8
  * Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009-2023, quasardb SAS. All rights reserved.
1
+ Copyright (c) 2009-2024, quasardb SAS. All rights reserved.
2
2
 
3
3
  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
4
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quasardb
3
- Version: 3.14.1.dev6
3
+ Version: 3.14.2.dev0
4
4
  Summary: Python API for quasardb
5
5
  Home-page: https://www.quasardb.net/
6
6
  Author: quasardb SAS
@@ -1,70 +1,70 @@
1
- quasardb/CMakeLists.txt,sha256=Rdpd6_7EfVD7F81k7OgxH57cVFIGZzz57O2haCTSrs8,15237
1
+ quasardb/CMakeLists.txt,sha256=A4HccmRaylX7PCjvgTSu0kGoxOSBnUfior3LmVfVGCE,15236
2
2
  quasardb/INSTALL.vcxproj,sha256=ELQMa8Tmpv62SobwBMIGzT9yDRDEYY_FM4sT4HDdFt0,10412
3
3
  quasardb/INSTALL.vcxproj.filters,sha256=pxy4_BlUGo1k6TJT-FCYg5ENQC4Gft4qMPj6MXtJ4KI,565
4
- quasardb/__init__.py,sha256=S5HGH9idLoUES_9XSqHnEixEC6VKwzcubJlnVvWi22E,3801
5
- quasardb/batch_column.hpp,sha256=txW9kYMgQzJiJlM5nD7LIVuAZpyidpS4MopPGKE95u0,3388
6
- quasardb/batch_inserter.hpp,sha256=bM73Z-IKow89GqoYaxDLDd0YuaN5Il4C5TjIVx9bI-Y,9803
7
- quasardb/blob.hpp,sha256=PObdSJxKNLIihBCLBxQHHH20t7VOmZG02wOfy8rB1-w,5846
4
+ quasardb/__init__.py,sha256=LQkGZwgAgEFZ0dZ5ROV02jUztTgnuGy83dQqHqJ8TBk,3801
5
+ quasardb/batch_column.hpp,sha256=RrFVpLVrzSLmmqy6FTNyilwRpOz8vhpAEDobnRGP-vo,3388
6
+ quasardb/batch_inserter.hpp,sha256=qoxVvfpEL4UmOpvFAC2kVWLyhuJ311nXAbQnThu2Rhg,9803
7
+ quasardb/blob.hpp,sha256=kHt1UTVkaZkyHBiqJ28bGzqKFn0f5PA-XyDKfgY1_Rs,5846
8
8
  quasardb/cluster.cpp,sha256=ytPCLRZVA7eTZgqIbLWKsmiugYLq80v9rSuoksKTE3c,2500
9
- quasardb/cluster.hpp,sha256=AYZY2myVI1eeG3Cxe7yCPb7Kmlh1Ij_go4ryZdIEJHc,19405
9
+ quasardb/cluster.hpp,sha256=c3uw4nFOIXYL8XtJVU7hSBQ7rjJOavVTN1rrOgvOF1c,19405
10
10
  quasardb/cmake_install.cmake,sha256=KUKVNwUMD1GuwNscaecm2d6-yB2MQq2A5XGhiDJVxVA,1503
11
11
  quasardb/concepts.hpp,sha256=Ao-UKFVjh7kRqeqsYXioV1LXiKXBR_1l54hRvUCjxKU,9574
12
12
  quasardb/continuous.cpp,sha256=18-VX7BZA60wkUq75ADU7yfgmwzT_CkG_tEAKxAVkLU,4566
13
- quasardb/continuous.hpp,sha256=eMnVl3T1a_LUaZR8sc48pTx-ECyKL_5LzoZA7ixQks0,4327
14
- quasardb/convert.hpp,sha256=Bp1vQieJ7F6BE_yQgPU2wfgrkv012FbOI5X9O5tXQAI,1830
15
- quasardb/direct_blob.hpp,sha256=f7RGYgy9lBvC_ln75Bh4cgPQ-DCLUzeb7NON5zQVsHA,3917
16
- quasardb/direct_handle.hpp,sha256=_fLsaC-TKiA8ksudLYyaWakITyScXPnJS4yMrxvTY_Q,2782
17
- quasardb/direct_integer.hpp,sha256=jHwNnAcB9wodgju8SBOsyPKWlifM094kENKSwySrSb8,3333
13
+ quasardb/continuous.hpp,sha256=g28UCjeL_S9dKIDNj794crWiGl3xESP9yHMScFjzvIc,4327
14
+ quasardb/convert.hpp,sha256=hOvbpYuop0_FDaBpot38Ey7X5NhXRV9OFqRcom_hMsI,1830
15
+ quasardb/direct_blob.hpp,sha256=8ISBiRG1uIxb5xkEkp4FKSIgMgdpnPYDWQjbLjN2vYM,3917
16
+ quasardb/direct_handle.hpp,sha256=OYRI3VsCoHyQCWLE-yogDq59hhVhoLSD4ZMGgEgVptw,2782
17
+ quasardb/direct_integer.hpp,sha256=b-T56JjsHFn4VxRZ6Bmp4uE1-Wc-bPO_erKSZPW3r3w,3333
18
18
  quasardb/dispatch.hpp,sha256=YWqTq9ehXWpphJ9piWwrKUzy3IgA5d9An0loAYQsUlg,5508
19
- quasardb/double.hpp,sha256=SW1z9QW09mC_8ggvleMZolivu2BHjF157IVKT_Jw638,3239
20
- quasardb/entry.hpp,sha256=IE6uL341x6U5dos40LhVKSJPuYZwod-oRy4PoF5a_80,9451
21
- quasardb/error.hpp,sha256=b3BvBn0wYqHlrkH48pZod6CMjtxFu6l7SQjt88zXlwc,10807
19
+ quasardb/double.hpp,sha256=vQkhqX5gal-PK8XAzTx4KJnoWt4xbCK4ivMgidUsJ4Q,3239
20
+ quasardb/entry.hpp,sha256=thYPRN6uFe1yfJyf7-5Gk1M8O6oJGjTipqNetbo1-I0,9451
21
+ quasardb/error.hpp,sha256=pZu3lTVVYYv-R7frPB422YeY4UtiK9y6YkxYfZFQmRo,10807
22
22
  quasardb/firehose.py,sha256=DHYsew-aL1j5PKZonH30CrhXnwHEX1XIAhGbPrzd4PY,3593
23
23
  quasardb/handle.cpp,sha256=oyhzAj1k8UFhpLhwU5RL4cbdqt82KZexWacMFz5uXA0,536
24
- quasardb/handle.hpp,sha256=o26dxmrXtfbxgj66QgKjW8wviUPbcZvmIAZ4L4CcdoQ,3051
25
- quasardb/integer.hpp,sha256=H5x8SEqlyI2nQZL9iv4GnCL0uWYuq8l8YYUzI83t0aE,3304
24
+ quasardb/handle.hpp,sha256=eXBx7TwCyfGKRS3XDKvnF9kwmqcqb89ZJ8_riTmM75c,3051
25
+ quasardb/integer.hpp,sha256=fAS8JOm_vJooVIv9kZ71fwV2rxFCnYuCLdkZRleb_lY,3304
26
26
  quasardb/logger.cpp,sha256=UThEO2V6UI-tbpG9suud7olmMjIMfHr3tNt-nM48DIE,3056
27
- quasardb/logger.hpp,sha256=4trngfo31-OizuEkQUoYob77PVeXC283tPGaX3JRpPY,7278
28
- quasardb/masked_array.hpp,sha256=nfuvkFZnNoGqqtJzBZ95h4e4PguhIr5kj3tVO4y8W4U,18988
27
+ quasardb/logger.hpp,sha256=Cf6bcK3Mpu_INsZ8R621BRSNLZ8FQSYDZdmhyfcC0v4,7278
28
+ quasardb/masked_array.hpp,sha256=EaGvx6-tjM31CIBgQVaeXmS3YeP3xIu3oF_kCgvy4nU,18988
29
29
  quasardb/metrics.cpp,sha256=NuEBVYlIHQRgmPy4g9Eosq1Q28Z1jySSZHKDAMLURIA,2942
30
- quasardb/metrics.hpp,sha256=oz_XDbcMCJ9fiaYi043rFakM-mmzsuONskDfMPDf4_U,3533
30
+ quasardb/metrics.hpp,sha256=xcotK6Jer53joky9gZHos0i_nhVB4GEjZ9F7lwq7iuc,3533
31
31
  quasardb/module.cpp,sha256=Nx0d3xyqCb2Red1WgsGUotaXxX6NHoDCcp9PnUzmcB0,2236
32
32
  quasardb/module.hpp,sha256=-zRcQ_lgVz4IEP3tokX4AeA33DYJ3jsq8vWX6OnE0Ic,604
33
- quasardb/node.hpp,sha256=_rcwUA9mOFW7b7I3B3Ll3aaBO0RoKV3LS19JITaIi6A,4771
33
+ quasardb/node.hpp,sha256=np3UoaFpbf7lQ4niudzftcldpdD8KtNGCBcs4xoMRgA,4771
34
34
  quasardb/numpy.cpp,sha256=0brRs6lnIpsCNvpu3twIcjizy3lMOvCBT0O4rjKAn0I,189
35
- quasardb/numpy.hpp,sha256=j2xGIFn98L4AAirxnkF6JaAwUBL1McfUBNsf4tlKPA0,15668
35
+ quasardb/numpy.hpp,sha256=CBmKbI2TdoxNYcJnfQAUwBfbKq1Enf3pISyv1pfUgFE,15668
36
36
  quasardb/object_tracker.hpp,sha256=m0S0vp3WX2kFsr6cE8iPmXXO-3qRo4lcVc6TgFa-MbM,7709
37
- quasardb/options.hpp,sha256=hXNBVTQdrDwWkxGyFBOuRGYyJoD_IpqpitJPbDnabi0,10158
38
- quasardb/perf.hpp,sha256=C7dM0ZZZ4Ln5pDnZpvvUMgdwLUp4Tom51JuZICSYGGI,11364
37
+ quasardb/options.hpp,sha256=vt3mOcH8VXNddfHJzz7GJS5FnlmmfB_xOys7LZD1IH8,10158
38
+ quasardb/perf.hpp,sha256=XZx6CJGwAqFBJhNQVtyEY72R3devrcFXEXrI2rVesow,11364
39
39
  quasardb/pool.py,sha256=lqVZPFejmNHU7EdyeoPkl7yy_-N3BRyuLhNTzIdtg8g,8743
40
- quasardb/pytypes.hpp,sha256=YTc6xdmxMGMWtrZHitAl3vudZxYctOX1NwL-QDuzz1g,6894
41
- quasardb/qdb_api.dll,sha256=JZRkdNtMmCDpr7_ZSkHYX1PWi3N5fH74SSh0D-7RWMk,15067136
42
- quasardb/quasardb.cp312-win_amd64.pyd,sha256=3aQ4CewbXCcn-9d3gmi0_LN2zFojhdC-42vRFp-l_E8,1428992
43
- quasardb/query.cpp,sha256=FhsA93s-mXqw6WnzQgYLooy02P-haTEHkTMpdgMbdKw,12752
44
- quasardb/query.hpp,sha256=dBFJ0FVNJN-WdCwbHU1iNbEzDHarGGDQaZ5gto-xwkY,3357
40
+ quasardb/pytypes.hpp,sha256=wQKTfIk1xdUt1xkq8oi-LNpYzF4RKAx0LjY9WjD2nu0,6894
41
+ quasardb/qdb_api.dll,sha256=98_Y_fLZt0kGAu1WRSvOnh9tJCxtUX9VvIG07gN85qM,15011328
42
+ quasardb/quasardb.cp312-win_amd64.pyd,sha256=VWhtXXOLUBa1RdbxsSwSFthkHcd9kaKrHaVpl_wLp-Y,1431040
43
+ quasardb/query.cpp,sha256=IWU7oQLIvdI4tydmwlc_3zNhng4OdKXBNcO0qtqa1Dg,12752
44
+ quasardb/query.hpp,sha256=lb-NXbLD-L1f4XYDQ67WlthaMrzg0miLFw-nEQCnlUk,3357
45
45
  quasardb/remove_cvref.hpp,sha256=vKUecNoA2-BIiZeP8NuO3GgBOMF-OVSn_43LJCuDozA,611
46
46
  quasardb/stats.py,sha256=LDV4F5KTpEXa5sS_syFo_TYn9_W2X1D32Eb43GLutOs,7620
47
- quasardb/string.hpp,sha256=xgvRf1TXy3nl45WeCHHhtO8toUYZ2Zo7RuvTAntIgZM,6071
48
- quasardb/table.cpp,sha256=_LAltQoycIzkqg4Id4u5MHN9Uy4OD-wWZMtdxzReMDs,10725
49
- quasardb/table.hpp,sha256=bu3n9jjNW_dH01vbXkCbl4TmwfbyQS_0a4_fitbcrUI,10941
47
+ quasardb/string.hpp,sha256=UV7rgEstnf-atcEsbq6I7iqN-E_h_5njE6g9kf7_H70,6071
48
+ quasardb/table.cpp,sha256=VBB4SB5J3Jj_o7HS2HpEtbvfaqDyNHtW61mPcmqUBS0,10893
49
+ quasardb/table.hpp,sha256=-8pl5KJqQL_7-Qp7b3rtKnDyB2wriPv44PsCkb-4yP8,12500
50
50
  quasardb/table_cache.py,sha256=t7FFQkms7pFlYDkOhCcLnLS8bWglZjlzX3Qs6gyBG6Q,1559
51
- quasardb/table_reader.hpp,sha256=UYqpLtdMFr4MKho0A9y6sKb1-KoNLtYPdypl6zOrwm0,6941
52
- quasardb/tag.hpp,sha256=gIs8LDa4o0JJBGuSQXsnyVeORax7KH0jHCyt0Zx6JMs,2732
53
- quasardb/timestamp.hpp,sha256=f2TLql7D-gTQbJMUdC9QKbHpbnkMPoDi0dHAF2IVrqc,3889
51
+ quasardb/table_reader.hpp,sha256=CaImMMj8czx2wvyTuZNQ2JU3Tyfny5rco_0XeeB7FxY,6941
52
+ quasardb/tag.hpp,sha256=nKGYkK1djTGHhFWCrYlQTWttb0TVJiTlrvcIbvuuZ3U,2732
53
+ quasardb/timestamp.hpp,sha256=fjGl0B4Sv_xhU6UWrhZzOfin7atlPqawKN-Bu1oiR6M,3889
54
54
  quasardb/traits.hpp,sha256=RLSJBeZbFsWRQAsZSm6GbV2a2-5jounsJ_TX0iSvyHI,16383
55
55
  quasardb/ts_iterator.hpp,sha256=faP1HVGYbWubKr98yhkS6gqvyMiKWkl3tgedJfj2u1E,4395
56
56
  quasardb/utils.cpp,sha256=PkuVxrj1cQfeVujA-kefx9-P0B6IJNtYDQzedCAMjKY,634
57
- quasardb/utils.hpp,sha256=ZedlY9Ahdphyi8tm2CySYb2k1RJTaDFqDBy3dvg-rJ8,4724
57
+ quasardb/utils.hpp,sha256=C5qxTYYN3-rzO01T_K23VEvhFsv2sJPK96SB_BJ2vZQ,4724
58
58
  quasardb/writer.cpp,sha256=5jPLFvOcJydiyBSbbtB-SDspKVoXcV9squEOQLuOvp0,19571
59
- quasardb/writer.hpp,sha256=08S7HDgdCajNSwro4i0i1lzyvUkHFh6M1vn8TJpAz_A,12933
59
+ quasardb/writer.hpp,sha256=FdCU3kEfnfa6qTPB56YV8NhLsERW5kFMyEhpcBOQ2bI,12933
60
60
  quasardb/CMakeFiles/generate.stamp,sha256=MC9-mgyGPAS3QAZa3gHSQ8dYfXJy_Hn7AChwEoqVWOs,55
61
61
  quasardb/CMakeFiles/generate.stamp.depend,sha256=uY8FV-ceJ2Kk-6JfOnsIesDV7jKoUNfkKHNY2Nf7_E8,117
62
- quasardb/convert/array.hpp,sha256=b9rp05GpUN9J2_LLdQV_WxTvZT02kE7Q1vk6rAUbSew,9161
63
- quasardb/convert/point.hpp,sha256=82hOqdbf2DUQde_OAfxWml8BgAPM0cixTF5joCIwfmM,11800
64
- quasardb/convert/range.hpp,sha256=zcYZFkX8RIR8f5w--sf8wTGB3ly-lPQ8a0rHbGthdWA,11176
62
+ quasardb/convert/array.hpp,sha256=H4X2lWhOFvkDxJeG7fl83dCxvkiScUQMRn7pNxKsgrw,9161
63
+ quasardb/convert/point.hpp,sha256=0WYxllERnzX9O5vIeflHG1y7KHo1SsyWjkZCi05GXO4,11800
64
+ quasardb/convert/range.hpp,sha256=Z0skhVzQ8JSRL2RPOwqVXE8AV3kxPHw3amGcNZXQatI,11176
65
65
  quasardb/convert/unicode.hpp,sha256=eW3OwKMnFrOJ9ftUzA6MeVH5nZMuT3q9vuDzxn97pSQ,15600
66
66
  quasardb/convert/util.hpp,sha256=Ldie5abmB4H_OFvykp0twzwAzOw_hyaUr85Ob3Qr-ko,582
67
- quasardb/convert/value.hpp,sha256=M5lmnVn4V1KBemKtq5G9ttxSUSOzeCVqohAMYoRr0pw,23396
67
+ quasardb/convert/value.hpp,sha256=c91FPAmwbqISG6EhqwnN4AqTeYloCMrLdrp3W17PdgI,23396
68
68
  quasardb/date/ALL_BUILD.vcxproj,sha256=sCiTOdE50HbWlSetEMvuVzhAUlqarYNGrvXiZ4o_gGM,13241
69
69
  quasardb/date/ALL_BUILD.vcxproj.filters,sha256=lTQk5MABpmIlZcZqriqmw7SlGUJKSM2xH8HnaKmgC5E,304
70
70
  quasardb/date/INSTALL.vcxproj,sha256=aSEnlrCkKuH_ak80yzAFepWurRQTj7Gl2d78i6FphSQ,10437
@@ -76,12 +76,12 @@ quasardb/date/dateTargets.cmake,sha256=mgzbE2I7AND1xmkmtBQUE51_Mfqhka5mExkpI2YiZ
76
76
  quasardb/date/CMakeFiles/generate.stamp,sha256=MC9-mgyGPAS3QAZa3gHSQ8dYfXJy_Hn7AChwEoqVWOs,55
77
77
  quasardb/date/CMakeFiles/generate.stamp.depend,sha256=BtPwq5NtFGRsDKHSrnCDRWZ5DnLsrz-ISnF7WyI9H98,450
78
78
  quasardb/date/CMakeFiles/Export/df49adab93b9e0c10c64f72458b31971/dateTargets.cmake,sha256=5hepIqwu5WtmdMoFVkRvh22_YuOJwvIrdny8I03rp4k,4102
79
- quasardb/detail/qdb_resource.hpp,sha256=wq9xtlgmRIb--n6yeJGWpZKvKXsiOfeCYFIXa8FA2bw,3165
80
- quasardb/detail/ts_column.hpp,sha256=37JhDJuItZ5ze0oBAjEIRKPCHHfgUmy4nHaQlYSQUZw,7555
79
+ quasardb/detail/qdb_resource.hpp,sha256=QaVzlgBZR04meF7iKPvwXCv46I98QlvvPdJ3CoDFM34,3319
80
+ quasardb/detail/ts_column.hpp,sha256=pjmNWx6GVdtWRGrYrG0DotL9NccoQN10rGIcxanxo10,7555
81
81
  quasardb/extensions/__init__.py,sha256=zvMxXV_zuRSbNrkjsu-qFSEiZahdHmC0lhMqMVRzY_8,120
82
82
  quasardb/extensions/writer.py,sha256=LcGhgr_jrHEDukVukLN1eGKCU0egeZkcCOenFEhZi3A,5928
83
83
  quasardb/numpy/__init__.py,sha256=s9pq8ruy4QOM08O_Zsdhmp50iQYVIlkp7g87U7Jc6bE,29079
84
- quasardb/pandas/__init__.py,sha256=_yeXtc8uA_HSoJ24lctXSB11T0kvVqNnW4KN1xa-goU,16617
84
+ quasardb/pandas/__init__.py,sha256=PYmcIprWuzVSCLD_5Au137BRFE2_urU83wV5jJc4I8o,16617
85
85
  quasardb/pybind11/ALL_BUILD.vcxproj,sha256=k4qz6jbQ9Q1nR3aptRG-M7P4_CClZQdlU3S9LxXiQ_Y,17681
86
86
  quasardb/pybind11/ALL_BUILD.vcxproj.filters,sha256=WjgQPMVZN7jEaUOdw8Ha03hPfNxybvx_F2wOck10Kqo,308
87
87
  quasardb/pybind11/INSTALL.vcxproj,sha256=mxp3GcWacCZwgE1cJXqKIWg9p2ZhEILHt5PTPxJ57P4,10457
@@ -104,15 +104,15 @@ quasardb/range-v3/CMakeFiles/generate.stamp,sha256=MC9-mgyGPAS3QAZa3gHSQ8dYfXJy_
104
104
  quasardb/range-v3/CMakeFiles/generate.stamp.depend,sha256=GhXU59kbuzj9_w1mzGx7Ty-yhRPJ6J7akPwm04KWxr8,1348
105
105
  quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake,sha256=7oWm2wsmqpiAL4Eo17HbvCz5gvGyaLyJC3pg3eo1HNU,5306
106
106
  quasardb/range-v3/include/range/v3/version.hpp,sha256=jy6iEzXjaavicAw1VSIfvpS7Wu9IoEY51Q5N9m4eaB8,610
107
- quasardb/reader/ts_row.hpp,sha256=luzqS9qGjWcsJp6fENGbV5KQ-HXO9_ZS4ucyuVXckYQ,9690
108
- quasardb/reader/ts_value.hpp,sha256=9xfhN7iHNxebO-OTmKYi2fs7I9sBAkPka1sLC8SuVkY,7048
107
+ quasardb/reader/ts_row.hpp,sha256=9xJN-chOhajwYp4XslDTmZRDuKWQcGuXMXoUGbKsk00,9690
108
+ quasardb/reader/ts_value.hpp,sha256=_EhN5445w80cFJD59Bza8ghWghvPxhY-ug5-cMqLMHc,7048
109
109
  quasardb/utils/blob_deque.hpp,sha256=YLp0eG1fSQXIFo46rZ8YIeTSNRJSdmmtdhC2z-qMa08,2540
110
110
  quasardb/utils/ostream.hpp,sha256=KYFwqXuZoxuZblHUM-z5xrd74P2Y5zWJqVpaQ9oedAo,390
111
111
  quasardb/utils/permutation.hpp,sha256=BwJzgZmpS4G-oS7249GvnUFj_cmqSAbF2Fzb8wuihLo,1552
112
112
  quasardb/utils/stable_sort.hpp,sha256=luIK9T76mT0NyDxpLxXjTt1eSSKEOY29jRANJNysJCo,489
113
113
  quasardb/utils/unzip_view.hpp,sha256=nn6BSAI_cGsKgBh8WXhAUJ6Zzn3N0AnhtE6ePmhPeQM,2476
114
- quasardb-3.14.1.dev6.dist-info/LICENSE.md,sha256=yqGeNifkwT_AQEPv0TwLxEdD9TgORqUjS01rgzG5EGY,1477
115
- quasardb-3.14.1.dev6.dist-info/METADATA,sha256=E41lG6VbSKiA00UKf7Xkp6_zRTbJhIxReJ3HZs62N-o,1496
116
- quasardb-3.14.1.dev6.dist-info/WHEEL,sha256=6ELqAucStubqYbsNht5G2Vt0Sx8vF2Win3-S4get58M,102
117
- quasardb-3.14.1.dev6.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
118
- quasardb-3.14.1.dev6.dist-info/RECORD,,
114
+ quasardb-3.14.2.dev0.dist-info/LICENSE.md,sha256=0iT1ltzDof6cJr8mSX2PVOGhKjISfCrOYzJg7rG2pOs,1477
115
+ quasardb-3.14.2.dev0.dist-info/METADATA,sha256=Xk8tnunVy-fz6F_4jhlkRc7AiU_7XQ-2Ax4KC6-i2Eo,1496
116
+ quasardb-3.14.2.dev0.dist-info/WHEEL,sha256=6ELqAucStubqYbsNht5G2Vt0Sx8vF2Win3-S4get58M,102
117
+ quasardb-3.14.2.dev0.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
118
+ quasardb-3.14.2.dev0.dist-info/RECORD,,