Fix compile for asan release mode

This commit is contained in:
Zach41 2024-12-18 10:14:57 +00:00 committed by ob-robot
parent a0d559ae97
commit be262ddbe9
4 changed files with 1 additions and 25 deletions

View File

@ -857,7 +857,6 @@ ob_set_subtarget(ob_sql ALONE
engine/expr/vector_cast/vector_cast_compile/vector_cast_part4.cpp
engine/expr/vector_cast/vector_cast_compile/vector_cast_part5.cpp
engine/expr/vector_cast/vector_cast_compile/vector_cast_part6.cpp
engine/expr/vector_cast/vector_cast_compile/vector_cast_part7.cpp
engine/expr/vector_cast/vector_cast_compile/vector_cast_all.cpp
engine/expr/vector_cast/vector_cast.cpp
)

View File

@ -21,7 +21,6 @@ extern void __init_vec_cast_func3();
extern void __init_vec_cast_func4();
extern void __init_vec_cast_func5();
extern void __init_vec_cast_func6();
extern void __init_vec_cast_func7();
int __init_all_vec_cast_funcs()
{
@ -32,7 +31,6 @@ int __init_all_vec_cast_funcs()
__init_vec_cast_func4();
__init_vec_cast_func5();
__init_vec_cast_func6();
__init_vec_cast_func7();
return 0;
}
} // end sq

View File

@ -17,7 +17,7 @@ namespace oceanbase
namespace sql
{
static const int COMPILATION_UNIT = 8;
static const int COMPILATION_UNIT = 7;
#define DEF_COMPILATION_VARS(name, max_val, unit_idx) \
constexpr int name##_unit_size = \

View File

@ -1,21 +0,0 @@
/**
* Copyright (c) 2021 OceanBase
* OceanBase CE is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PubL v2 for more details.
*/
#include "vector_cast_common.h"
namespace oceanbase
{
namespace sql
{
DEF_COMPILE_FUNC_INIT(7);
} // end sql
} // end oceanbase