mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
Fix rocky-8 vanilla compiler build (#2959)
Co-authored-by: Leonid Fedorov <leonid.fedorov@mariad.com>
This commit is contained in:
parent
70111eba3d
commit
8171e9da07
@ -68,6 +68,13 @@ if [[ $OS = 'Ubuntu' || $OS = 'Debian' ]]; then
|
||||
fi
|
||||
|
||||
|
||||
disable_git_restore_frozen_revision()
|
||||
{
|
||||
cd $MDB_SOURCE_PATH
|
||||
git config submodule.storage/columnstore/columnstore.update none
|
||||
cd - > /dev/null
|
||||
}
|
||||
|
||||
select_branch()
|
||||
{
|
||||
cd $SCRIPT_LOCATION
|
||||
@ -84,9 +91,6 @@ select_branch()
|
||||
fi
|
||||
|
||||
message "Turning off Columnstore submodule auto update via gitconfig"
|
||||
cd $MDB_SOURCE_PATH
|
||||
git config submodule.storage/columnstore/columnstore.update none
|
||||
cd - > /dev/null
|
||||
fi
|
||||
|
||||
cd - > /dev/null
|
||||
@ -529,6 +533,8 @@ generate_svgs()
|
||||
fi
|
||||
}
|
||||
|
||||
disable_git_restore_frozen_revision
|
||||
|
||||
select_branch
|
||||
|
||||
if [[ $INSTALL_DEPS = true ]] ; then
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "tuplehashjoin.h"
|
||||
#include "joinpartition.h"
|
||||
#include "threadnaming.h"
|
||||
#include <mutex>
|
||||
|
||||
#pragma once
|
||||
|
||||
|
@ -593,7 +593,7 @@ TEST_P(ParseTreeComparatorTest, CompareContains)
|
||||
auto filter = std::make_unique<execplan::ParseTree>(new execplan::SimpleFilter(
|
||||
GetParam().filter, execplan::SimpleFilter::ForTestPurposesWithoutColumnsOIDS{}));
|
||||
|
||||
ASSERT_EQ(GetParam().contains, container.contains(filter));
|
||||
ASSERT_EQ(GetParam().contains, container.count(filter)!=0);
|
||||
}
|
||||
|
||||
INSTANTIATE_TEST_SUITE_P(
|
||||
|
Loading…
x
Reference in New Issue
Block a user