1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Fix garbage charset using ColType(int32_t colWidth_, int32_t scale_, int32_t precision_, (#2949)

const ConstraintType& constraintType_, const DictOID& ddn_, int32_t colPosition_,
            int32_t compressionType_, OID columnOID_, const ColDataType& colDataType_);
This commit is contained in:
Leonid Fedorov
2023-09-06 20:01:31 +03:00
committed by GitHub
parent 931f2b36a1
commit 1c9cd9db9f
2 changed files with 9 additions and 21 deletions

View File

@ -6146,18 +6146,6 @@ void CalpontSystemCatalog::checkSysCatVer()
}
}
CalpontSystemCatalog::ColType::ColType()
: constraintType(NO_CONSTRAINT)
, colPosition(-1)
, compressionType(NO_COMPRESSION)
, columnOID(0)
, autoincrement(0)
, nextvalue(0)
, cs(NULL)
{
charsetNumber = default_charset_info->number;
}
CalpontSystemCatalog::ColType::ColType(const ColType& rhs) : TypeHolderStd(rhs)
{
constraintType = rhs.constraintType;