We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0cb0bef + ef956e6 commit b627b54Copy full SHA for b627b54
src/libcephsqlite.cc
@@ -46,11 +46,18 @@ SQLITE_EXTENSION_INIT1
46
#include "common/debug.h"
47
#include "common/errno.h"
48
#include "common/perf_counters.h"
49
+#include "common/strtol.h" // for strict_strtoll()
50
#include "common/version.h"
51
52
#include "include/libcephsqlite.h"
53
#include "SimpleRADOSStriper.h"
54
55
+#if defined(WITH_SEASTAR) && !defined(WITH_ALIEN)
56
+#include "crimson/common/perf_counters_collection.h"
57
+#else
58
+#include "common/perf_counters_collection.h"
59
+#endif
60
+
61
#define dout_subsys ceph_subsys_cephsqlite
62
#undef dout_prefix
63
#define dout_prefix *_dout << "cephsqlite: " << __func__ << ": "
0 commit comments