You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-02 17:22:27 +03:00
MCOL-641 Fix alter table add wide decimal column.
This patch also removes CalpontSystemCatalog::BINARY and ddlpackage::DDL_BINARY that were added during the initial stages of the work on MCOL-641.
This commit is contained in:
@ -164,7 +164,7 @@ class PrimTest : public CppUnit::TestFixture
|
||||
|
||||
// binary data type
|
||||
CPPUNIT_TEST(p_Col_bin_16);
|
||||
CPPUNIT_TEST(p_Col_bin_32);
|
||||
// CPPUNIT_TEST(p_Col_bin_32);
|
||||
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
@ -3801,7 +3801,7 @@ public:
|
||||
args = reinterpret_cast<ColArgs*>(&input[sizeof(NewColRequestHeader)]);
|
||||
|
||||
in->DataSize = sizeof(binary16);
|
||||
in->DataType = execplan::CalpontSystemCatalog::BINARY;
|
||||
in->DataType = execplan::CalpontSystemCatalog::DECIMAL;
|
||||
in->OutputType = OT_DATAVALUE;
|
||||
in->NOPS = 3;
|
||||
in->BOP = BOP_OR;
|
||||
|
Reference in New Issue
Block a user