quasardb 3.14.1.dev5__cp38-cp38-macosx_10_14_x86_64.whl → 3.14.2.dev0__cp38-cp38-macosx_10_14_x86_64.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 (70) hide show
  1. quasardb/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  2. quasardb/CMakeLists.txt +5 -1
  3. quasardb/Makefile +9 -9
  4. quasardb/__init__.py +1 -1
  5. quasardb/batch_column.hpp +1 -1
  6. quasardb/batch_inserter.hpp +1 -1
  7. quasardb/blob.hpp +1 -1
  8. quasardb/cluster.cpp +89 -0
  9. quasardb/cluster.hpp +38 -51
  10. quasardb/cmake_install.cmake +4 -4
  11. quasardb/continuous.hpp +1 -1
  12. quasardb/convert/array.hpp +1 -1
  13. quasardb/convert/point.hpp +1 -1
  14. quasardb/convert/range.hpp +1 -1
  15. quasardb/convert/value.hpp +1 -1
  16. quasardb/convert.hpp +1 -1
  17. quasardb/date/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  18. quasardb/date/Makefile +9 -9
  19. quasardb/date/cmake_install.cmake +4 -4
  20. quasardb/detail/qdb_resource.hpp +11 -1
  21. quasardb/detail/ts_column.hpp +1 -1
  22. quasardb/direct_blob.hpp +1 -1
  23. quasardb/direct_handle.hpp +1 -1
  24. quasardb/direct_integer.hpp +1 -1
  25. quasardb/double.hpp +1 -1
  26. quasardb/entry.hpp +1 -1
  27. quasardb/error.hpp +1 -1
  28. quasardb/handle.cpp +29 -0
  29. quasardb/handle.hpp +3 -15
  30. quasardb/integer.hpp +1 -1
  31. quasardb/libqdb_api.dylib +0 -0
  32. quasardb/logger.cpp +3 -0
  33. quasardb/logger.hpp +1 -1
  34. quasardb/masked_array.hpp +1 -1
  35. quasardb/metrics.cpp +103 -0
  36. quasardb/metrics.hpp +112 -0
  37. quasardb/module.cpp +2 -0
  38. quasardb/node.hpp +1 -1
  39. quasardb/numpy.hpp +1 -1
  40. quasardb/options.hpp +1 -1
  41. quasardb/pandas/__init__.py +1 -1
  42. quasardb/perf.hpp +1 -1
  43. quasardb/pybind11/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  44. quasardb/pybind11/Makefile +9 -9
  45. quasardb/pybind11/cmake_install.cmake +1 -1
  46. quasardb/pytypes.hpp +1 -1
  47. quasardb/quasardb.cpython-38-darwin.so +0 -0
  48. quasardb/query.cpp +14 -3
  49. quasardb/query.hpp +1 -1
  50. quasardb/range-v3/CMakeFiles/CMakeDirectoryInformation.cmake +1 -1
  51. quasardb/range-v3/CMakeFiles/range.v3.headers.dir/build.make +12 -12
  52. quasardb/range-v3/Makefile +14 -14
  53. quasardb/range-v3/cmake_install.cmake +4 -4
  54. quasardb/reader/ts_row.hpp +1 -1
  55. quasardb/reader/ts_value.hpp +1 -1
  56. quasardb/string.hpp +1 -1
  57. quasardb/table.cpp +34 -0
  58. quasardb/table.hpp +64 -32
  59. quasardb/table_reader.hpp +1 -1
  60. quasardb/tag.hpp +1 -1
  61. quasardb/timestamp.hpp +1 -1
  62. quasardb/utils.hpp +1 -1
  63. quasardb/writer.cpp +4 -0
  64. quasardb/writer.hpp +1 -1
  65. {quasardb-3.14.1.dev5.dist-info → quasardb-3.14.2.dev0.dist-info}/LICENSE.md +1 -1
  66. {quasardb-3.14.1.dev5.dist-info → quasardb-3.14.2.dev0.dist-info}/METADATA +1 -1
  67. quasardb-3.14.2.dev0.dist-info/RECORD +109 -0
  68. quasardb-3.14.1.dev5.dist-info/RECORD +0 -105
  69. {quasardb-3.14.1.dev5.dist-info → quasardb-3.14.2.dev0.dist-info}/WHEEL +0 -0
  70. {quasardb-3.14.1.dev5.dist-info → quasardb-3.14.2.dev0.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,7 @@
3
3
 
4
4
  # Relative path conversion top directories.
5
5
  set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/thirdparty")
6
- set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb")
6
+ set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb")
7
7
 
8
8
  # Force unix paths in dependencies.
9
9
  set(CMAKE_FORCE_UNIX_PATHS 1)
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)
@@ -325,6 +325,7 @@ set(QDB_FILES
325
325
  batch_inserter.hpp
326
326
  blob.hpp
327
327
  cluster.hpp
328
+ cluster.cpp
328
329
  concepts.hpp
329
330
  continuous.cpp
330
331
  continuous.hpp
@@ -333,9 +334,12 @@ set(QDB_FILES
333
334
  error.hpp
334
335
  entry.hpp
335
336
  handle.hpp
337
+ handle.cpp
336
338
  logger.hpp
337
339
  logger.cpp
338
340
  masked_array.hpp
341
+ metrics.hpp
342
+ metrics.cpp
339
343
  module.hpp
340
344
  module.cpp
341
345
  node.hpp
quasardb/Makefile CHANGED
@@ -60,7 +60,7 @@ EQUALS = =
60
60
  CMAKE_SOURCE_DIR = /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/quasardb
61
61
 
62
62
  # The top-level build directory on which CMake was run.
63
- CMAKE_BINARY_DIR = /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38
63
+ CMAKE_BINARY_DIR = /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38
64
64
 
65
65
  #=============================================================================
66
66
  # Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
132
132
 
133
133
  # The main all target
134
134
  all: cmake_check_build_system
135
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38/CMakeFiles /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb//CMakeFiles/progress.marks
136
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/all
137
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38/CMakeFiles 0
135
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38/CMakeFiles /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb//CMakeFiles/progress.marks
136
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/all
137
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38/CMakeFiles 0
138
138
  .PHONY : all
139
139
 
140
140
  # The main clean target
141
141
  clean:
142
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/clean
142
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/clean
143
143
  .PHONY : clean
144
144
 
145
145
  # The main clean target
@@ -148,17 +148,17 @@ clean/fast: clean
148
148
 
149
149
  # Prepare targets for installation.
150
150
  preinstall: all
151
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/preinstall
151
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/preinstall
152
152
  .PHONY : preinstall
153
153
 
154
154
  # Prepare targets for installation.
155
155
  preinstall/fast:
156
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/preinstall
156
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/preinstall
157
157
  .PHONY : preinstall/fast
158
158
 
159
159
  # clear depends
160
160
  depend:
161
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
161
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
162
162
  .PHONY : depend
163
163
 
164
164
  # Help Target
@@ -184,6 +184,6 @@ help:
184
184
  # No rule that depends on this can have commands that come from listfiles
185
185
  # because they might be regenerated.
186
186
  cmake_check_build_system:
187
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
187
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
188
188
  .PHONY : cmake_check_build_system
189
189
 
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.cpp ADDED
@@ -0,0 +1,89 @@
1
+ #include "cluster.hpp"
2
+ #include "metrics.hpp"
3
+ #include <chrono>
4
+ #include <thread>
5
+
6
+ namespace qdb
7
+ {
8
+
9
+ cluster::cluster(const std::string & uri,
10
+ const std::string & user_name,
11
+ const std::string & user_private_key,
12
+ const std::string & cluster_public_key,
13
+ const std::string & user_security_file,
14
+ const std::string & cluster_public_key_file,
15
+ std::chrono::milliseconds timeout,
16
+ bool do_version_check)
17
+ : _uri{uri}
18
+ , _handle{make_handle_ptr()}
19
+ , _json_loads{pybind11::module::import("json").attr("loads")}
20
+ , _logger("quasardb.cluster")
21
+ {
22
+ if (do_version_check == true)
23
+ {
24
+ _logger.warn(
25
+ "do_version_check parameter has been deprecated and a no-op. It will be removed from a "
26
+ "future release");
27
+ }
28
+
29
+ options().apply_credentials(user_name, user_private_key, cluster_public_key, //
30
+ user_security_file, cluster_public_key_file);
31
+
32
+ options().set_timeout(timeout);
33
+
34
+ // HACKS(leon): we need to ensure there is always one callback active
35
+ // for qdb. Callbacks can be lost when the last active session
36
+ // gets closed. As such, the most pragmatic place to 'check'
37
+ // for this callback is when establishing a new connection.
38
+ qdb::native::swap_callback();
39
+
40
+ _logger.info("Connecting to cluster %s", _uri);
41
+ _handle->connect(_uri);
42
+ }
43
+
44
+ void cluster::close()
45
+ {
46
+ _logger.info("Closing connection to cluster");
47
+
48
+ try
49
+ {
50
+ if (is_open() == true) [[likely]]
51
+ {
52
+ _handle->close();
53
+ }
54
+ }
55
+ catch (qdb::invalid_handle_exception const & e)
56
+ {
57
+ // This can happen if, for example, we call close() after an error occured; in those
58
+ // circumstances, we fully expect the connection to already be invalid, and we should
59
+ // not care if this specific exception is raised.
60
+ _logger.warn("Connection already closed");
61
+ }
62
+
63
+ _handle.reset();
64
+
65
+ assert(is_open() == false);
66
+ }
67
+
68
+ void cluster::wait_for_compaction()
69
+ {
70
+
71
+ // We define this function in the .cpp file so we can avoid including chrono and thread
72
+ // in the header file.
73
+
74
+ using namespace std::chrono_literals;
75
+
76
+ for (;;)
77
+ {
78
+ std::uint64_t progress = compact_progress();
79
+
80
+ if (progress == 0) [[unlikely]]
81
+ {
82
+ break;
83
+ }
84
+
85
+ std::this_thread::sleep_for(100ms);
86
+ }
87
+ }
88
+
89
+ }; // namespace qdb
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
@@ -72,58 +72,10 @@ public:
72
72
  const std::string & user_security_file = {},
73
73
  const std::string & cluster_public_key_file = {},
74
74
  std::chrono::milliseconds timeout = std::chrono::minutes{1},
75
- bool do_version_check = false)
76
- : _uri{uri}
77
- , _handle{make_handle_ptr()}
78
- , _json_loads{pybind11::module::import("json").attr("loads")}
79
- , _logger("quasardb.cluster")
80
- {
81
- if (do_version_check == true)
82
- {
83
- _logger.warn(
84
- "do_version_check parameter has been deprecated and a no-op. It will be removed from a "
85
- "future release");
86
- }
87
-
88
- options().apply_credentials(user_name, user_private_key, cluster_public_key, //
89
- user_security_file, cluster_public_key_file);
90
-
91
- options().set_timeout(timeout);
92
-
93
- // HACKS(leon): we need to ensure there is always one callback active
94
- // for qdb. Callbacks can be lost when the last active session
95
- // gets closed. As such, the most pragmatic place to 'check'
96
- // for this callback is when establishing a new connection.
97
- qdb::native::swap_callback();
98
-
99
- _logger.info("Connecting to cluster %s", _uri);
100
- _handle->connect(_uri);
101
- }
75
+ bool do_version_check = false);
102
76
 
103
77
  public:
104
- void close()
105
- {
106
- _logger.info("Closing connection to cluster");
107
-
108
- try
109
- {
110
- if (is_open() == true) [[likely]]
111
- {
112
- _handle->close();
113
- }
114
- }
115
- catch (qdb::invalid_handle_exception const & e)
116
- {
117
- // This can happen if, for example, we call close() after an error occured; in those
118
- // circumstances, we fully expect the connection to already be invalid, and we should
119
- // not care if this specific exception is raised.
120
- _logger.warn("Connection already closed");
121
- }
122
-
123
- _handle.reset();
124
-
125
- assert(is_open() == false);
126
- }
78
+ void close();
127
79
 
128
80
  bool is_open() const
129
81
  {
@@ -463,6 +415,37 @@ public:
463
415
  static_cast<int>(timeout_ms.count())));
464
416
  }
465
417
 
418
+ void compact_full()
419
+ {
420
+ check_open();
421
+
422
+ qdb_compact_params_t params{};
423
+ params.options = qdb_compact_full;
424
+
425
+ qdb::qdb_throw_if_error(*_handle, qdb_cluster_compact(*_handle, &params));
426
+ }
427
+
428
+ // Returns 0 when finished / no compaction running
429
+ std::uint64_t compact_progress()
430
+ {
431
+ check_open();
432
+
433
+ std::uint64_t progress;
434
+
435
+ qdb::qdb_throw_if_error(*_handle, qdb_cluster_get_compact_progress(*_handle, &progress));
436
+
437
+ return progress;
438
+ }
439
+
440
+ void compact_abort()
441
+ {
442
+ check_open();
443
+
444
+ qdb::qdb_throw_if_error(*_handle, qdb_cluster_abort_compact(*_handle));
445
+ }
446
+
447
+ void wait_for_compaction();
448
+
466
449
  public:
467
450
  std::vector<std::string> endpoints()
468
451
  {
@@ -558,6 +541,10 @@ static inline void register_cluster(Module & m)
558
541
  .def("purge_all", &qdb::cluster::purge_all) //
559
542
  .def("trim_all", &qdb::cluster::trim_all) //
560
543
  .def("purge_cache", &qdb::cluster::purge_cache) //
544
+ .def("compact_full", &qdb::cluster::compact_full) //
545
+ .def("compact_progress", &qdb::cluster::compact_progress) //
546
+ .def("compact_abort", &qdb::cluster::compact_abort) //
547
+ .def("wait_for_compaction", &qdb::cluster::wait_for_compaction) //
561
548
  .def("endpoints", &qdb::cluster::endpoints); //
562
549
  }
563
550
 
@@ -34,14 +34,14 @@ endif()
34
34
 
35
35
  # Set default install directory permissions.
36
36
  if(NOT DEFINED CMAKE_OBJDUMP)
37
- set(CMAKE_OBJDUMP "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump")
37
+ set(CMAKE_OBJDUMP "/usr/local/clang16/bin/llvm-objdump")
38
38
  endif()
39
39
 
40
40
  if(NOT CMAKE_INSTALL_LOCAL_ONLY)
41
41
  # Include the install script for each subdirectory.
42
- include("/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/cmake_install.cmake")
43
- include("/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/pybind11/cmake_install.cmake")
44
- include("/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/range-v3/cmake_install.cmake")
42
+ include("/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/cmake_install.cmake")
43
+ include("/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/pybind11/cmake_install.cmake")
44
+ include("/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/range-v3/cmake_install.cmake")
45
45
 
46
46
  endif()
47
47
 
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
@@ -3,7 +3,7 @@
3
3
 
4
4
  # Relative path conversion top directories.
5
5
  set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/thirdparty")
6
- set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb")
6
+ set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb")
7
7
 
8
8
  # Force unix paths in dependencies.
9
9
  set(CMAKE_FORCE_UNIX_PATHS 1)
quasardb/date/Makefile CHANGED
@@ -60,7 +60,7 @@ EQUALS = =
60
60
  CMAKE_SOURCE_DIR = /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/quasardb
61
61
 
62
62
  # The top-level build directory on which CMake was run.
63
- CMAKE_BINARY_DIR = /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38
63
+ CMAKE_BINARY_DIR = /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38
64
64
 
65
65
  #=============================================================================
66
66
  # Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
132
132
 
133
133
  # The main all target
134
134
  all: cmake_check_build_system
135
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38/CMakeFiles /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date//CMakeFiles/progress.marks
136
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/all
137
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38/CMakeFiles 0
135
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38/CMakeFiles /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date//CMakeFiles/progress.marks
136
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/all
137
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38/CMakeFiles 0
138
138
  .PHONY : all
139
139
 
140
140
  # The main clean target
141
141
  clean:
142
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/clean
142
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/clean
143
143
  .PHONY : clean
144
144
 
145
145
  # The main clean target
@@ -148,17 +148,17 @@ clean/fast: clean
148
148
 
149
149
  # Prepare targets for installation.
150
150
  preinstall: all
151
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/preinstall
151
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/preinstall
152
152
  .PHONY : preinstall
153
153
 
154
154
  # Prepare targets for installation.
155
155
  preinstall/fast:
156
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/preinstall
156
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/preinstall
157
157
  .PHONY : preinstall/fast
158
158
 
159
159
  # clear depends
160
160
  depend:
161
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
161
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
162
162
  .PHONY : depend
163
163
 
164
164
  # Help Target
@@ -184,6 +184,6 @@ help:
184
184
  # No rule that depends on this can have commands that come from listfiles
185
185
  # because they might be regenerated.
186
186
  cmake_check_build_system:
187
- cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-12.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
187
+ cd /Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/temp.macosx-14.0-x86_64-cpython-38 && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
188
188
  .PHONY : cmake_check_build_system
189
189
 
@@ -34,7 +34,7 @@ endif()
34
34
 
35
35
  # Set default install directory permissions.
36
36
  if(NOT DEFINED CMAKE_OBJDUMP)
37
- set(CMAKE_OBJDUMP "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump")
37
+ set(CMAKE_OBJDUMP "/usr/local/clang16/bin/llvm-objdump")
38
38
  endif()
39
39
 
40
40
  if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
@@ -45,7 +45,7 @@ if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT
45
45
  if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/date/dateTargets.cmake")
46
46
  file(DIFFERENT _cmake_export_file_changed FILES
47
47
  "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/date/dateTargets.cmake"
48
- "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake")
48
+ "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake")
49
49
  if(_cmake_export_file_changed)
50
50
  file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/date/dateTargets-*.cmake")
51
51
  if(_cmake_old_config_files)
@@ -58,13 +58,13 @@ if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT
58
58
  endif()
59
59
  unset(_cmake_export_file_changed)
60
60
  endif()
61
- file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/date" TYPE FILE FILES "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake")
61
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/date" TYPE FILE FILES "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/CMakeFiles/Export/a52b05f964b070ee926bcad51d3288af/dateTargets.cmake")
62
62
  endif()
63
63
 
64
64
  if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
65
65
  file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/date" TYPE FILE FILES
66
66
  "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/thirdparty/date/cmake/dateConfig.cmake"
67
- "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-12.0-x86_64-cpython-38/quasardb/date/dateConfigVersion.cmake"
67
+ "/Users/teamcity/buildAgent/work/938b0bdf6727d1ad/build/lib.macosx-14.0-x86_64-cpython-38/quasardb/date/dateConfigVersion.cmake"
68
68
  )
69
69
  endif()
70
70
 
@@ -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