1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

libc++ crashes fixes

This commit is contained in:
Leonid Fedorov
2025-08-01 03:33:40 +00:00
parent 7b660fa860
commit aa87d7fbb3
5 changed files with 55 additions and 52 deletions

View File

@@ -24,7 +24,7 @@
namespace execplan
{
#define debug_rewrites false
#define debug_rewrites true
execplan::OpType oppositeOperator(execplan::OpType op);
@@ -34,7 +34,7 @@ struct NodeSemanticComparator
};
// Walk the tree and find out common conjuctions
template<bool stableSort = false>
template <bool stableSort = false>
execplan::ParseTree* extractCommonLeafConjunctionsToRoot(execplan::ParseTree* tree);
bool checkFiltersLimit(execplan::ParseTree* tree, uint64_t limit);
} // namespace execplan