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.
- quasardb/CMakeLists.txt +11 -1
- quasardb/__init__.py +1 -1
- quasardb/batch_column.hpp +1 -1
- quasardb/batch_inserter.hpp +1 -1
- quasardb/blob.hpp +1 -1
- quasardb/cluster.hpp +1 -1
- quasardb/continuous.hpp +1 -1
- quasardb/convert/array.hpp +1 -1
- quasardb/convert/point.hpp +1 -1
- quasardb/convert/range.hpp +1 -1
- quasardb/convert/value.hpp +1 -1
- quasardb/convert.hpp +1 -1
- quasardb/detail/qdb_resource.hpp +11 -1
- quasardb/detail/ts_column.hpp +1 -1
- quasardb/direct_blob.hpp +1 -1
- quasardb/direct_handle.hpp +1 -1
- quasardb/direct_integer.hpp +1 -1
- quasardb/double.hpp +1 -1
- quasardb/entry.hpp +1 -1
- quasardb/error.hpp +1 -1
- quasardb/handle.hpp +1 -1
- quasardb/integer.hpp +1 -1
- quasardb/libqdb_api.dylib +0 -0
- quasardb/logger.hpp +1 -1
- quasardb/masked_array.hpp +1 -1
- quasardb/metrics.hpp +1 -1
- quasardb/node.hpp +1 -1
- quasardb/numpy.hpp +1 -1
- quasardb/options.hpp +1 -1
- quasardb/pandas/__init__.py +1 -1
- quasardb/perf.hpp +1 -1
- quasardb/pytypes.hpp +1 -1
- quasardb/quasardb.cpython-310-darwin.so +0 -0
- quasardb/query.cpp +1 -1
- quasardb/query.hpp +1 -1
- quasardb/reader/ts_row.hpp +1 -1
- quasardb/reader/ts_value.hpp +1 -1
- quasardb/string.hpp +1 -1
- quasardb/table.cpp +14 -6
- quasardb/table.hpp +71 -21
- quasardb/table_reader.hpp +1 -1
- quasardb/tag.hpp +1 -1
- quasardb/timestamp.hpp +1 -1
- quasardb/utils.hpp +1 -1
- quasardb/writer.hpp +1 -1
- {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/LICENSE.md +1 -1
- {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/METADATA +1 -1
- {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/RECORD +50 -50
- {quasardb-3.14.1.dist-info → quasardb-3.14.2.dev1.dist-info}/WHEEL +0 -0
- {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 "
|
|
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-
|
|
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
quasardb/batch_inserter.hpp
CHANGED
quasardb/blob.hpp
CHANGED
quasardb/cluster.hpp
CHANGED
quasardb/continuous.hpp
CHANGED
quasardb/convert/array.hpp
CHANGED
quasardb/convert/point.hpp
CHANGED
quasardb/convert/range.hpp
CHANGED
quasardb/convert/value.hpp
CHANGED
quasardb/convert.hpp
CHANGED
quasardb/detail/qdb_resource.hpp
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
*
|
|
3
3
|
* Official Python API
|
|
4
4
|
*
|
|
5
|
-
* Copyright (c) 2009-
|
|
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_;
|
quasardb/detail/ts_column.hpp
CHANGED
quasardb/direct_blob.hpp
CHANGED
quasardb/direct_handle.hpp
CHANGED
quasardb/direct_integer.hpp
CHANGED
quasardb/double.hpp
CHANGED
quasardb/entry.hpp
CHANGED
quasardb/error.hpp
CHANGED
quasardb/handle.hpp
CHANGED
quasardb/integer.hpp
CHANGED
quasardb/libqdb_api.dylib
CHANGED
|
Binary file
|
quasardb/logger.hpp
CHANGED
quasardb/masked_array.hpp
CHANGED
quasardb/metrics.hpp
CHANGED
quasardb/node.hpp
CHANGED
quasardb/numpy.hpp
CHANGED
quasardb/options.hpp
CHANGED
quasardb/pandas/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# pylint: disable=C0103,C0111,C0302,R0903
|
|
2
2
|
|
|
3
|
-
# Copyright (c) 2009-
|
|
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
quasardb/pytypes.hpp
CHANGED
|
Binary file
|
quasardb/query.cpp
CHANGED
quasardb/query.hpp
CHANGED
quasardb/reader/ts_row.hpp
CHANGED
quasardb/reader/ts_value.hpp
CHANGED
quasardb/string.hpp
CHANGED
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::
|
|
72
|
+
void table::_cache_metadata() const
|
|
73
73
|
{
|
|
74
74
|
_handle->check_open();
|
|
75
75
|
|
|
76
|
-
detail::qdb_resource<
|
|
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("
|
|
83
|
-
err =
|
|
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
|
|
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-
|
|
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
|
-
|
|
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
|
-
|
|
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(),
|
|
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
|
-
|
|
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
|
|
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
|
|
208
|
+
void _maybe_cache_metadata() const
|
|
165
209
|
{
|
|
166
210
|
if (_columns.has_value() == false) [[unlikely]]
|
|
167
211
|
{
|
|
168
|
-
|
|
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
|
-
|
|
242
|
-
.def("
|
|
243
|
-
.def("
|
|
244
|
-
.def("
|
|
245
|
-
.def("
|
|
246
|
-
.def("
|
|
247
|
-
.def("
|
|
248
|
-
.def("
|
|
249
|
-
.def("
|
|
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
quasardb/tag.hpp
CHANGED
quasardb/timestamp.hpp
CHANGED
quasardb/utils.hpp
CHANGED
quasardb/writer.hpp
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
quasardb/CMakeLists.txt,sha256=
|
|
1
|
+
quasardb/CMakeLists.txt,sha256=dD10FmWEVzOyVXMNlbYavP9a5usPIqa7oJzS63yw3aU,14997
|
|
2
2
|
quasardb/Makefile,sha256=MMgCVjaVUNRcifCGGMnsrJYtSdegAb1aBdkxf_Xj9pg,7409
|
|
3
|
-
quasardb/__init__.py,sha256=
|
|
4
|
-
quasardb/batch_column.hpp,sha256=
|
|
5
|
-
quasardb/batch_inserter.hpp,sha256=
|
|
6
|
-
quasardb/blob.hpp,sha256=
|
|
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=
|
|
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=
|
|
13
|
-
quasardb/convert.hpp,sha256=
|
|
14
|
-
quasardb/direct_blob.hpp,sha256=
|
|
15
|
-
quasardb/direct_handle.hpp,sha256=
|
|
16
|
-
quasardb/direct_integer.hpp,sha256=
|
|
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=
|
|
19
|
-
quasardb/entry.hpp,sha256=
|
|
20
|
-
quasardb/error.hpp,sha256=
|
|
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=
|
|
24
|
-
quasardb/integer.hpp,sha256=
|
|
25
|
-
quasardb/libqdb_api.dylib,sha256=
|
|
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=
|
|
28
|
-
quasardb/masked_array.hpp,sha256=
|
|
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=
|
|
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=
|
|
33
|
+
quasardb/node.hpp,sha256=Cg8X5jp_JQnjjM47M08yQtahnelmx_agSKeLyzpiVwQ,4648
|
|
34
34
|
quasardb/numpy.cpp,sha256=U1lazDCBCCKRR3ubLCf5OaHbK-kLQAZz7jLlHWSr1gw,183
|
|
35
|
-
quasardb/numpy.hpp,sha256=
|
|
35
|
+
quasardb/numpy.hpp,sha256=u3TXtkbjxClieDPXw55oGLXxeJStU8O-wIPW9o_4T28,15179
|
|
36
36
|
quasardb/object_tracker.hpp,sha256=6TyqWLe3h1g4Uq2Cw1pG53kTnmjDiYZS6h43u4jUWiU,7426
|
|
37
|
-
quasardb/options.hpp,sha256=
|
|
38
|
-
quasardb/perf.hpp,sha256=
|
|
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=
|
|
41
|
-
quasardb/quasardb.cpython-310-darwin.so,sha256=
|
|
42
|
-
quasardb/query.cpp,sha256=
|
|
43
|
-
quasardb/query.hpp,sha256
|
|
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=
|
|
47
|
-
quasardb/table.cpp,sha256
|
|
48
|
-
quasardb/table.hpp,sha256=
|
|
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=
|
|
51
|
-
quasardb/tag.hpp,sha256=
|
|
52
|
-
quasardb/timestamp.hpp,sha256=
|
|
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=
|
|
56
|
+
quasardb/utils.hpp,sha256=PIy4q3c70eUkMPLRX_XJZsH9D8P-zY8SzKF6sGYi9ME,4550
|
|
57
57
|
quasardb/writer.cpp,sha256=lBy9j75n-gQfb-ufJAUBDwlrpcCYZ6eve6MNDnjuIYU,19037
|
|
58
|
-
quasardb/writer.hpp,sha256=
|
|
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=
|
|
62
|
-
quasardb/convert/point.hpp,sha256=
|
|
63
|
-
quasardb/convert/range.hpp,sha256=
|
|
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=
|
|
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
|
|
75
|
-
quasardb/detail/ts_column.hpp,sha256=
|
|
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=
|
|
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=
|
|
99
|
-
quasardb/reader/ts_value.hpp,sha256=
|
|
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.
|
|
106
|
-
quasardb-3.14.
|
|
107
|
-
quasardb-3.14.
|
|
108
|
-
quasardb-3.14.
|
|
109
|
-
quasardb-3.14.
|
|
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,,
|
|
File without changes
|
|
File without changes
|