[refactor] remove types_test (#8289)

* [refactor] remove types_test
1. remove types_test, it will cause core dump in higher version GCC or
   clang, because of memory align, some code will be vectorized in higher
   GCC or clang
2. Change string type length to 2 GB instead of -1
3. modify inaccessible code
This commit is contained in:
Zhengguo Yang
2022-03-03 09:31:35 +08:00
committed by GitHub
parent 8be71b69d5
commit f622ce0497
4 changed files with 8 additions and 65 deletions

View File

@ -33,7 +33,6 @@ ADD_BE_TEST(system_metrics_test)
ADD_BE_TEST(string_util_test)
ADD_BE_TEST(string_parser_test)
ADD_BE_TEST(core_local_test)
ADD_BE_TEST(types_test)
ADD_BE_TEST(json_util_test)
ADD_BE_TEST(byte_buffer_test2)
ADD_BE_TEST(uid_util_test)

View File

@ -1,58 +0,0 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "util/types.h"
#include <gtest/gtest.h>
#include "runtime/large_int_value.h"
namespace doris {
class TypesTest : public ::testing::Test {
protected:
TypesTest() {}
virtual ~TypesTest() {}
};
TEST_F(TypesTest, packed_int128) {
// check align
ASSERT_EQ(1, alignof(PackedInt128));
// check assign
__int128 test_value = 123456789987654321;
test_value *= 1000000000000000000UL;
test_value += 123456789987654321UL;
char buf[30];
*reinterpret_cast<PackedInt128*>(buf + 1) = test_value;
ASSERT_EQ(reinterpret_cast<PackedInt128*>(buf + 1)->value, test_value);
LOG(INFO) << reinterpret_cast<PackedInt128*>(buf + 1)->value;
{
char buf2[64];
*reinterpret_cast<PackedInt128*>(buf2 + 7) = *reinterpret_cast<PackedInt128*>(buf + 1);
reinterpret_cast<PackedInt128*>(buf2 + 7)->value += 100;
ASSERT_EQ(reinterpret_cast<PackedInt128*>(buf2 + 7)->value, test_value + 100);
LOG(INFO) << reinterpret_cast<PackedInt128*>(buf2 + 7)->value;
}
}
} // namespace doris
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}

View File

@ -57,9 +57,6 @@ public class ScalarType extends Type {
// Longest supported VARCHAR and CHAR, chosen to match Hive.
public static final int MAX_VARCHAR_LENGTH = 65533;
// 2GB - 4 4bytes for storage string length
public static final int MAX_STRING_LENGTH = 2147483643;
public static final int MAX_CHAR_LENGTH = 255;
// HLL DEFAULT LENGTH 2^14(registers) + 1(type)
@ -69,6 +66,11 @@ public class ScalarType extends Type {
// Keep consistent with backend ColumnType::CHAR_INLINE_LENGTH
public static final int CHAR_INLINE_LENGTH = 128;
// Max length of String types, in be storage layer store string length
// using int32, the max length is 2GB, the first 4 bytes store the length
// so the max available length is 2GB - 4
public static final int MAX_STRING_LENGTH = 0x7fffffff - 4;
// Hive, mysql, sql server standard.
public static final int MAX_PRECISION = 38;
@ -291,7 +293,7 @@ public class ScalarType extends Type {
public static ScalarType createStringType() {
// length checked in analysis
ScalarType type = new ScalarType(PrimitiveType.STRING);
type.len = -1;
type.len = MAX_STRING_LENGTH;
return type;
}

View File

@ -331,8 +331,8 @@ public class ConnectProcessor {
MysqlCommand command = MysqlCommand.fromCode(code);
if (command == null) {
ErrorReport.report(ErrorCode.ERR_UNKNOWN_COM_ERROR);
ctx.getState().setError(ErrorCode.ERR_UNKNOWN_COM_ERROR, "Unknown command(" + command + ")");
LOG.warn("Unknown command(" + command + ")");
ctx.getState().setError(ErrorCode.ERR_UNKNOWN_COM_ERROR, "Unknown command(" + code + ")");
LOG.warn("Unknown command(" + code + ")");
return;
}
ctx.setCommand(command);