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.
1 parent 1b96db0 commit b49f88aCopy full SHA for b49f88a
src/cypher/execution_plan/ops/op_var_len_expand.h
@@ -21,6 +21,17 @@
21
#include "cypher/execution_plan/ops/op.h"
22
#include "filter/filter.h"
23
24
+#ifndef NDEBUG
25
+#define VAR_LEN_EXP_DUMP_FOR_DEBUG() \
26
+ do { \
27
+ LOG_DEBUG() << __func__ << __LINE__ << ": hop=" << hop_ << ", edge=" \
28
+ << (hop_ == 0 ? "na" : _detail::EdgeUid2String(eits_[hop_ - 1].GetUid())); \
29
+ LOG_DEBUG() << pattern_graph_->VisitedEdges().Dump(); \
30
+ } while (0)
31
+#else
32
+#define VAR_LEN_EXP_DUMP_FOR_DEBUG()
33
+#endif
34
+
35
namespace cypher {
36
37
struct DfsState {
0 commit comments