quasardb 3.14.1__cp310-cp310-macosx_11_0_arm64.whl → 3.14.2.dev1__cp310-cp310-macosx_11_0_arm64.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 +11 -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/libqdb_api.dylib +0 -0
  24. quasardb/logger.hpp +1 -1
  25. quasardb/masked_array.hpp +1 -1
  26. quasardb/metrics.hpp +1 -1
  27. quasardb/node.hpp +1 -1
  28. quasardb/numpy.hpp +1 -1
  29. quasardb/options.hpp +1 -1
  30. quasardb/pandas/__init__.py +1 -1
  31. quasardb/perf.hpp +1 -1
  32. quasardb/pytypes.hpp +1 -1
  33. quasardb/quasardb.cpython-310-darwin.so +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.dist-info → quasardb-3.14.2.dev1.dist-info}/LICENSE.md +1 -1
  47. {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/METADATA +1 -1
  48. {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/RECORD +50 -50
  49. {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/WHEEL +0 -0
  50. {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/top_level.txt +0 -0
quasardb/CMakeLists.txt CHANGED
@@ -2,9 +2,19 @@ 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 "11.0")
5
+ set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15")
6
6
  set(CMAKE_VERBOSE_MAKEFILE FALSE)
7
7
 
8
+ if(APPLE)
9
+ # Robustly get the SDK path using xcrun.
10
+ execute_process(
11
+ COMMAND xcrun --sdk macosx --show-sdk-path
12
+ OUTPUT_VARIABLE SDK_PATH
13
+ COMMAND_ERROR_IS_FATAL ANY
14
+ )
15
+ string(STRIP "${SDK_PATH}" CMAKE_OSX_SYSROOT)
16
+ endif()
17
+
8
18
  include(CheckIPOSupported)
9
19
 
10
20
  option(QDB_LINK_STATIC_LIB "Link qdb_api_static instead of dynamic qdb_api." OFF)
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/libqdb_api.dylib CHANGED
Binary file
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
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
3
+ Version: 3.14.2.dev1
4
4
  Summary: Python API for quasardb
5
5
  Home-page: https://www.quasardb.net/
6
6
  Author: quasardb SAS
@@ -1,69 +1,69 @@
1
- quasardb/CMakeLists.txt,sha256=91bdfVN6KTgCz6PHvqrrEoorn00c4U6-91FU_51xMdQ,14736
1
+ quasardb/CMakeLists.txt,sha256=dD10FmWEVzOyVXMNlbYavP9a5usPIqa7oJzS63yw3aU,14997
2
2
  quasardb/Makefile,sha256=MMgCVjaVUNRcifCGGMnsrJYtSdegAb1aBdkxf_Xj9pg,7409
3
- quasardb/__init__.py,sha256=LZ2jO_0RX6OCzgnDgyLK78xtYLzNzfguD8TuQju-4Ho,3707
4
- quasardb/batch_column.hpp,sha256=lgsf5iYSz5u1udgfhVG4QTv96DW0C2GSCgeIltw-n-w,3308
5
- quasardb/batch_inserter.hpp,sha256=23OxfmKG6SdD_lsTZS3v7ZPGuunRMP_4hBov8I8oybA,9555
6
- quasardb/blob.hpp,sha256=D7T9ECon76aIlUoQqvN2XNEzF8FQ7dh1sAvEmuvI-u4,5696
3
+ quasardb/__init__.py,sha256=JLNtV7P81HLi_OXqumJ1dq3fDUiUnR3Ktmf-e7wtalo,3707
4
+ quasardb/batch_column.hpp,sha256=PuZEM78TNxyqtNm4OcuhqMTiconRDG6qdWIvKBIpO8s,3308
5
+ quasardb/batch_inserter.hpp,sha256=QUmVPKu1ffF6Ee_9eyBG2-QDDqtF2TLAFZqxG28HL6w,9555
6
+ quasardb/blob.hpp,sha256=YirJQeZu0sGfd-66Vc57G7DLRIU9wm_SbaA8jeXXz_8,5696
7
7
  quasardb/cluster.cpp,sha256=jMaqH-xL5EMSM2GM8JgZTqAlC3UY38YvZDw8cNDf-Xw,2411
8
- quasardb/cluster.hpp,sha256=GLZabw9awbe2nr3xPbTcgmDdeFapuGEAtYzK5aJoOEM,18854
8
+ quasardb/cluster.hpp,sha256=64TzCkifDcX2pN2CUwgyEIoWEs_wOUbO5wp4tAEmAWQ,18854
9
9
  quasardb/cmake_install.cmake,sha256=9fNWs4GlwSEHXcWYEyAQZL2KonAHAMLVWWsBBEObtdA,1673
10
10
  quasardb/concepts.hpp,sha256=bdfPkYLtcf0s-fc0QDz05c2dTm_gj7y2BMSceIY4dHA,9296
11
11
  quasardb/continuous.cpp,sha256=vNWtyingRC9g_2OQ7KjWm0L62fguQILXvQ14zu9OlLE,4417
12
- quasardb/continuous.hpp,sha256=aX90ydtKYcraoGaNfmIK97EFiqCikDwhSR-IcdjG0AE,4221
13
- quasardb/convert.hpp,sha256=ZiwFPGZ5oktFEVh1TsaDEFPMuLAfEK9bMWYE8A8fGYk,1792
14
- quasardb/direct_blob.hpp,sha256=pkREoqF1yiZ3SB_9DEIEvD49qgSZA3wZOU_QENpEADM,3809
15
- quasardb/direct_handle.hpp,sha256=bz2t2BG6fjKyMIokLakrES8hFday49wIm4AUtOW36e0,2699
16
- quasardb/direct_integer.hpp,sha256=7p5MywGqZr2fa9fyYAz_P4wlzqgglTdw2HdCMyll1vU,3239
12
+ quasardb/continuous.hpp,sha256=9viS4tTGUHn3OVZJiZFXhZKEIFBEvHvy77KoNlSdtmg,4221
13
+ quasardb/convert.hpp,sha256=xZF8j7tD84p8jiBMJjqw2lAcert2Zjc8XitI2OU81zc,1792
14
+ quasardb/direct_blob.hpp,sha256=xCcVLj_iuZOO2V2F_jVAYJ5W7f9jWtKrR_9SEcis5rU,3809
15
+ quasardb/direct_handle.hpp,sha256=MS4leMysKFf_20ydlsFfyh7l_BpVhNdgPP_ta_nVjPs,2699
16
+ quasardb/direct_integer.hpp,sha256=eedoutY2wb3W7C3RVATtOFKc-wigris04P62-cCKSV8,3239
17
17
  quasardb/dispatch.hpp,sha256=Xo7WdNaXc3R9KghWTZHRzxqlXDpNVG5iyaGW5Qd7ej4,5351
18
- quasardb/double.hpp,sha256=lvjHILHMa0JC2egDgO2JVtiJqgcmhQfGMyafCpc0jT0,3152
19
- quasardb/entry.hpp,sha256=O-CDkWNqzUHKQiLz17toQFukZE6lZo3b35lRR1kjL0I,9178
20
- quasardb/error.hpp,sha256=QIjtxqCSdlB3RD3AMHavJDFrCFGkb46R70YY2rjGo-Q,10489
18
+ quasardb/double.hpp,sha256=WcB2xqgXAvZAs_ADUNIVWR9-v0Lf7KCK5mnvl_k4nG0,3152
19
+ quasardb/entry.hpp,sha256=WGEWd8Wj4ZIDGFwiHPqK_RkUoNYHRlSHW_M_TERqL_k,9178
20
+ quasardb/error.hpp,sha256=VD1lT0E_a-l_DR_gOU0-Nb4jzTJpzz_d-wCXNAS1oko,10489
21
21
  quasardb/firehose.py,sha256=HO0GjCDg3x4cpzVSH3KZ1AJhV8lK2HJyXr9tpfnNSGI,3492
22
22
  quasardb/handle.cpp,sha256=6x7qPFvIzGNralz7MFbUtCEXi26Q2RKzNhIywoVIOKM,507
23
- quasardb/handle.hpp,sha256=2n_n3FwOQRJ9KB0DMmOFC547K320JwOeSsGCHCfrZWE,2953
24
- quasardb/integer.hpp,sha256=_h-0PZfvlKAnCUgrzuisOsM_hS-S49MzwBJyJ-yZpyE,3216
25
- quasardb/libqdb_api.dylib,sha256=1_61ArebZfJMBtTK_wkDUPPxf9c_JGE31zuWt9hwkA4,30955472
23
+ quasardb/handle.hpp,sha256=OoaSROIDbJMrcHQr8dy5RLJCKrObg68dVUvb-eNBr0Y,2953
24
+ quasardb/integer.hpp,sha256=od5QaIC262o_5JSk5vkbmNDUX3K7tFir1u5FmEPs8GE,3216
25
+ quasardb/libqdb_api.dylib,sha256=cx_U4RcLXQowyKP5GhtgjIdL6QqO9t00dxNjTumueDY,31593488
26
26
  quasardb/logger.cpp,sha256=UT2dGHF_sk-UIFUAOWxdse8JlcaLnnARsZDu5AP_v4E,2950
27
- quasardb/logger.hpp,sha256=USIltBP4gAGQcfLCXLgKXifdk0oJwyNjIJiF8HIMlgU,7050
28
- quasardb/masked_array.hpp,sha256=XWzRY0ySs3-xKRxa9UJsixZqGsCNXnOhGuhDrnZOwXU,18337
27
+ quasardb/logger.hpp,sha256=CrQoHtAHsaovArH6kp_c4up0fVbj7lm4uPcSRnU9VKU,7050
28
+ quasardb/masked_array.hpp,sha256=QSDaKgj5PhmXJg6efPL9qSu69aEXgCmWhmshzhOLt3w,18337
29
29
  quasardb/metrics.cpp,sha256=7xbg65UUQysbT8AIsnLOaVbBlwxQqB8sMzFgcOw4BMI,2839
30
- quasardb/metrics.hpp,sha256=Ff9IkRbQ7jbzG9SXTpNnYX7lRKixhbecAn14omgBld4,3421
30
+ quasardb/metrics.hpp,sha256=8LV0XOfqH0gc_gSycZlh4u_zDMXuDX3eQRGtIEhyk9Y,3421
31
31
  quasardb/module.cpp,sha256=f705GwIRdmNO6hb_Yx-3z6QJo5WiRrRvsr54VK7iWH4,2160
32
32
  quasardb/module.hpp,sha256=NQYsuOMyTnhSufJyAFQOXiL9znXea_ch2CnDgEKm1dY,580
33
- quasardb/node.hpp,sha256=bE5xtaHwdDNBHPDhgh-vI3lvI9DIPjtmzRszkyZxuBI,4648
33
+ quasardb/node.hpp,sha256=Cg8X5jp_JQnjjM47M08yQtahnelmx_agSKeLyzpiVwQ,4648
34
34
  quasardb/numpy.cpp,sha256=U1lazDCBCCKRR3ubLCf5OaHbK-kLQAZz7jLlHWSr1gw,183
35
- quasardb/numpy.hpp,sha256=uuuk5yK5nsqYKCXd6WfLsC1j2bBupjGiy9IXra9WTDw,15179
35
+ quasardb/numpy.hpp,sha256=u3TXtkbjxClieDPXw55oGLXxeJStU8O-wIPW9o_4T28,15179
36
36
  quasardb/object_tracker.hpp,sha256=6TyqWLe3h1g4Uq2Cw1pG53kTnmjDiYZS6h43u4jUWiU,7426
37
- quasardb/options.hpp,sha256=9v1WRQSBZEZYrzf_jHP_wgeepxhq9s-W9c1nqAmuGeY,9914
38
- quasardb/perf.hpp,sha256=gFJiVuE-BUigrm2267o0MacP0YwVYpxR-8ldlmlaLAA,11028
37
+ quasardb/options.hpp,sha256=ufMlL8w5cxa81QiUgWaIpGaPKS7KbyGEBtg6MT7NPyc,9914
38
+ quasardb/perf.hpp,sha256=ctcI8tF07Pp6uEPGx1Hhw_3m3UCgRrVyeHxUW7W7ST4,11028
39
39
  quasardb/pool.py,sha256=4IFwot-U8GEHo8h86264uVTWge44bOH_TUkoVy3Hjac,8449
40
- quasardb/pytypes.hpp,sha256=buxGpg3ZUbXfAblG2jRncEsqMfjuoaNKpW2IuB8dALw,6673
41
- quasardb/quasardb.cpython-310-darwin.so,sha256=_tFB9_YTGIFSP5tBsvW1MaD-q5yEMSB5jUt6ZwZtyxw,1133712
42
- quasardb/query.cpp,sha256=yi_lH0nvrSIJUO2kouz8jSeDhgOHpjcNT6HZoBlvbe8,12332
43
- quasardb/query.hpp,sha256=-er_n0esgo7AshmGJxEenBRuaJvZUNF-Oco_LvjdcmM,3265
40
+ quasardb/pytypes.hpp,sha256=Y1XmY8VeC_ePLS4IpXXDX5ulfYQ9070u4as8Ke9vP-o,6673
41
+ quasardb/quasardb.cpython-310-darwin.so,sha256=xcOEVSlnTzZxR8YW8ISMitLyTL96kal0vVleYYLC8Ow,1133728
42
+ quasardb/query.cpp,sha256=coSAZRM7WGgT6hfq5lPQF9jMde7x6x4u8Q-LRmRF9B4,12332
43
+ quasardb/query.hpp,sha256=kKy9qUdRS_ibzEgrFYThrgViqH99-ixctl-Hv2dd-Ns,3265
44
44
  quasardb/remove_cvref.hpp,sha256=kGW27WE2GvUL9sWvVdFD6NgnVF40bzeNl74ecTlyG9c,580
45
45
  quasardb/stats.py,sha256=DKvurzur-4c5nVPjr29_Stu9mvwCynM5gGnw0gVQlt8,7387
46
- quasardb/string.hpp,sha256=IS9Ep-f_GX-o5XD5Dy82D5Yf1_oA93feMgH13LFDHzg,5911
47
- quasardb/table.cpp,sha256=-zEd3u5o4FhrjxTkW8PKtVyaRZhJ7gI4TYiaaNgL65Y,10444
48
- quasardb/table.hpp,sha256=sVh1rHGYifvB3sIySIs4BDbu5F205TWupVyya4nB2ps,10666
46
+ quasardb/string.hpp,sha256=GU96yYyyselpq53Vib0g087YEL9-RWVaEclQnDalYuk,5911
47
+ quasardb/table.cpp,sha256=yj_zEXMWDi-QDhnyn48PxQ8p4qEG-yONTbzXatU_Uzw,10604
48
+ quasardb/table.hpp,sha256=HAt1a6_eg-L47DHiJhcKFszgcJnqrtLpNqCzHJXK7fw,12175
49
49
  quasardb/table_cache.py,sha256=RgLOYEcgmlc5fVeOBOyjZImtYKoM1UEdzyzPc8EriQI,1507
50
- quasardb/table_reader.hpp,sha256=gXFJ3e9E6AzYxwfpCeqnTOyiynpWLwgB2IJJElIl9zs,6721
51
- quasardb/tag.hpp,sha256=QhbOSn0Qwaf1TC9GtELREQOQBmPGeKdRpgIBlPdlmq4,2655
52
- quasardb/timestamp.hpp,sha256=bfiHaQcCD37CA_PrjW5PZZlomr4xH-STM03jrZpABhc,3792
50
+ quasardb/table_reader.hpp,sha256=p-YGE6vMZBa2Ujv6UkpPSabSCIKTu9zksDL1FMcARm0,6721
51
+ quasardb/tag.hpp,sha256=1x_EXjKEJGYTpKt-5lq77hHecNJexvxvuAX-aOIPWZ0,2655
52
+ quasardb/timestamp.hpp,sha256=3o3-_vOAlRAEHEv8rXjfIOHIsgEPcVFps5B-rzdOFkY,3792
53
53
  quasardb/traits.hpp,sha256=JBF1ySxuoUM9DdSb1tZyB_lDHCXw8DEC1HlTaEXzkWQ,15764
54
54
  quasardb/ts_iterator.hpp,sha256=tiO5dqPpQrhOT0j6v2AUY5kRYDYj-gki2eBzCiYUDSs,4202
55
55
  quasardb/utils.cpp,sha256=QzmxqyTWPZ0XwxVS_wtTzfffZs3HI8MwwvW9vAHiT-Q,606
56
- quasardb/utils.hpp,sha256=pTkffOObpXUi2yQqOWwTNiv9eT80nndeQtySuNIN5MQ,4550
56
+ quasardb/utils.hpp,sha256=PIy4q3c70eUkMPLRX_XJZsH9D8P-zY8SzKF6sGYi9ME,4550
57
57
  quasardb/writer.cpp,sha256=lBy9j75n-gQfb-ufJAUBDwlrpcCYZ6eve6MNDnjuIYU,19037
58
- quasardb/writer.hpp,sha256=wHpIsUsWrNrM1yGOnBL8YQncASlu-129vVqASXqd0Ls,12537
58
+ quasardb/writer.hpp,sha256=QlVuVbHg4Ld4_TsesxpyggHufb7868idQQtCu21bA0Q,12537
59
59
  quasardb/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=emBqqihXcEU_OG0X3lOA-NV06RU5oz53Vnuqg70QAUw,732
60
60
  quasardb/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
61
- quasardb/convert/array.hpp,sha256=L8GQBG7oR7o16JylN3AFkNiaLpblJCrPlHxCqiAJUsg,8879
62
- quasardb/convert/point.hpp,sha256=WxXiPePfgJwyQPHKxyvbN7ue0cCRO4yvjAysOWSwSjs,11470
63
- quasardb/convert/range.hpp,sha256=4wLSEwYxzMdCh3NjWKbonOSUfC33rRaw3n8d1QFrBUc,10894
61
+ quasardb/convert/array.hpp,sha256=25a6szW3h6By99PgLlbJLrJkwmAjn70qjGDc6TZjoOU,8879
62
+ quasardb/convert/point.hpp,sha256=CDAtOCbx9q6-hhPIIoa6SGM6Aj9bHiJ6tnxsMvPOC4A,11470
63
+ quasardb/convert/range.hpp,sha256=TgNZCgf1OwUQPKgsfLu-VzEiazFqUvMD8LYwkXwGCkU,10894
64
64
  quasardb/convert/unicode.hpp,sha256=WZcLiC-tRTYS-IAKZ6l2AVbk9AUv3DBbEWbCiwh8MIY,15002
65
65
  quasardb/convert/util.hpp,sha256=eJhQGs0ymPn3CT48HGHndaChJg_SCOI5U1QkLccXLdQ,560
66
- quasardb/convert/value.hpp,sha256=YDBT8UUnMUjrP_isW70WBZMGnldT1tMVER9k5Keekhc,22685
66
+ quasardb/convert/value.hpp,sha256=aoMb40BcnigooffRsKd_5s6i8cFyIPhDfBLzn1Hc-gE,22685
67
67
  quasardb/date/Makefile,sha256=C5reNXeVf508qn20uLV4BExKE8fMoHBNzzcwXrOcyaU,7434
68
68
  quasardb/date/cmake_install.cmake,sha256=KnXhLACgArw0TzH29FB6CIfEcpJPBI9j9SremdlEk_4,3249
69
69
  quasardb/date/dateConfigVersion.cmake,sha256=PLnZWf4r8BmNkw645Jb7mJrIe2QWSJioM6O4nY0Nwj8,2418
@@ -71,12 +71,12 @@ quasardb/date/dateTargets.cmake,sha256=YJ_GPXSFeDNN7iShTy1Q0kkv5wdBDVkUnhBqDaq4x
71
71
  quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=emBqqihXcEU_OG0X3lOA-NV06RU5oz53Vnuqg70QAUw,732
72
72
  quasardb/date/CMakeFiles/progress.marks,sha256=micfKpFrC27mzsskJvCzIG7wdFeL5V2byU9vP-Orhqo,2
73
73
  quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake,sha256=aSVH_ARNZMTBnVvb3Ep8XBfBKNzo7rY_DlrjGXcWnWs,4124
74
- quasardb/detail/qdb_resource.hpp,sha256=KN5zdvhqzuvVbyjkyLZRmgkgYmi1kaj_GOWqLtCVM3M,3046
75
- quasardb/detail/ts_column.hpp,sha256=nOrvBb-pikTrK5AJbaRJz4EGPD6JAdDw8CpdJjT2xX4,7331
74
+ quasardb/detail/qdb_resource.hpp,sha256=-bWSUmFB-WyUInBwcy_g0VCigOk6qeqj1pfN-vmerEs,3190
75
+ quasardb/detail/ts_column.hpp,sha256=SkeuudVqwIWxPEEP3cAtUjgovvEItQeCQ3EyRx1LOVo,7331
76
76
  quasardb/extensions/__init__.py,sha256=FUHR0i62qt5NkOXn7eiMZrzWXo9mQNr1xVz3VSCa9QU,112
77
77
  quasardb/extensions/writer.py,sha256=ZH6ldQrbH-DimuQTyk3mXS1OyaJIhvCmZTzFtG4hRfY,5735
78
78
  quasardb/numpy/__init__.py,sha256=DKIe8702OedqPxSxgiOze15ulf7XZT4HL9X7Zif-j5c,28226
79
- quasardb/pandas/__init__.py,sha256=13Gq3sSlU5xIJ1bf-0n7yyKCWRPYBNSBAjc5VSV0j3g,16126
79
+ quasardb/pandas/__init__.py,sha256=_PBUGHATNKtIJu5F-4bW9dPfhQGnXyBKwAgq_ykXFVo,16126
80
80
  quasardb/pybind11/Makefile,sha256=Z_4t6CjCC2tHOwK1nOAFuDAmXjoMRLdZu6QYysJwTnc,7454
81
81
  quasardb/pybind11/cmake_install.cmake,sha256=b9uFDssIxtpKwp4oiOF937lN6D2fmOettcCHAdbU244,1169
82
82
  quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake,sha256=emBqqihXcEU_OG0X3lOA-NV06RU5oz53Vnuqg70QAUw,732
@@ -95,15 +95,15 @@ quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.make,sha256=Og
95
95
  quasardb/range-v3/CMakeFiles/range.v3.headers.dir/compiler_depend.ts,sha256=orKrKpvHulgFBjBgzdeRvCpv0fV7cTffTdaHNqijFJg,120
96
96
  quasardb/range-v3/CMakeFiles/range.v3.headers.dir/progress.make,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
97
97
  quasardb/range-v3/include/range/v3/version.hpp,sha256=d-ToEdR3GnC_p_0RAeS77xL-SVx6EKHgTlWJ9PUQlSQ,586
98
- quasardb/reader/ts_row.hpp,sha256=UQtvOPNAD8XWVRisgbuNhAzgCsriCBwv8UtI4rjiETM,9409
99
- quasardb/reader/ts_value.hpp,sha256=eA2ar5x_bRTQesSSXPf1MHYr66kiSKGC00jxS5ZhEU8,6803
98
+ quasardb/reader/ts_row.hpp,sha256=KGVjhgSS6PVHc-LSoknEWCHsclM2PazuPyNIXbek_jc,9409
99
+ quasardb/reader/ts_value.hpp,sha256=GnMH8SjeXY0UBffQUudgakQDMgwemgEXMbokSq-dLVI,6803
100
100
  quasardb/utils/blob_deque.hpp,sha256=PdfYNE_wjXRd5w0OJv-qxoPixmUfEk6sL88jbBd10kM,2445
101
101
  quasardb/utils/ostream.hpp,sha256=oqnyxurnnbiStXuFTZEewEM_SsYzB-RdUft-q2y1JcI,374
102
102
  quasardb/utils/permutation.hpp,sha256=7iyUNZQLxUEyOliRKwoVzO9pzG_b5Id4JjAHXAy5I50,1502
103
103
  quasardb/utils/stable_sort.hpp,sha256=Z1R3mWl78_Zh4O4bxCXQJHBCd7m71G-qFRcK-ll07qc,465
104
104
  quasardb/utils/unzip_view.hpp,sha256=pkwk_BTYOm_9HOjyf6Z2W2Udc9he5EJKcIbbrYcUzok,2387
105
- quasardb-3.14.1.dist-info/LICENSE.md,sha256=4D8uWaUfWtnVDET9cPT43pHIiwt1GHXvEr1rzz49pJw,1467
106
- quasardb-3.14.1.dist-info/METADATA,sha256=jDyw7vna77zAI5dSy-bp5Ukjqom3eyuLV3dgo1Ha3OU,1456
107
- quasardb-3.14.1.dist-info/WHEEL,sha256=oMFc9-KjvMLKiqM40kAaafsHJktZGp0eIX_k197YDRk,110
108
- quasardb-3.14.1.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
109
- quasardb-3.14.1.dist-info/RECORD,,
105
+ quasardb-3.14.2.dev1.dist-info/LICENSE.md,sha256=_drOadIrIX8mzUZcnTJBTpUQih5gwdRAGK8ZKanYD6k,1467
106
+ quasardb-3.14.2.dev1.dist-info/METADATA,sha256=vChxMwzIDrM_UlCOWA4VENjRpwwvZ9rdJp5p8kPDBzM,1461
107
+ quasardb-3.14.2.dev1.dist-info/WHEEL,sha256=oMFc9-KjvMLKiqM40kAaafsHJktZGp0eIX_k197YDRk,110
108
+ quasardb-3.14.2.dev1.dist-info/top_level.txt,sha256=wlprix4hCywuF1PkgKWYdZeJKq_kgJOqkAvukm_sZQ8,9
109
+ quasardb-3.14.2.dev1.dist-info/RECORD,,