You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-641 Fix the cpimport issue when tables contains wide-DECIMAL and other types.
This commit is contained in:
@ -205,6 +205,7 @@ WErrorCodes::WErrorCodes() : fErrorCodes()
|
||||
fErrorCodes[ERR_BRM_SUSPEND] = " The system is in write suspended mode";
|
||||
fErrorCodes[ERR_BRM_GET_SUSPEND] = " BRM error get the system suspend flag ";
|
||||
fErrorCodes[ERR_BRM_BAD_STRIPE_CNT] = " Incorrect number of column extents allocated in stripe";
|
||||
fErrorCodes[ERR_BRM_UNSUPP_WIDTH] = " Unsupported non-dictionary column width";
|
||||
|
||||
// DM error
|
||||
fErrorCodes[ERR_DM_CONVERT_OID] = " a DM Conversion error";
|
||||
|
@ -308,6 +308,7 @@ const int ERR_BRM_GET_SHUTDOWN = ERR_BRMBASE + 43;// error getting BRM Shut
|
||||
const int ERR_BRM_SUSPEND = ERR_BRMBASE + 44;// BRM is set to Suspend writes
|
||||
const int ERR_BRM_GET_SUSPEND = ERR_BRMBASE + 45;// error getting BRM Suspend flag
|
||||
const int ERR_BRM_BAD_STRIPE_CNT = ERR_BRMBASE + 46;// Incorrect num of cols allocated in stripe
|
||||
const int ERR_BRM_UNSUPP_WIDTH = ERR_BRMBASE + 47;// Non-dict column Width > allowed MAX.
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// DM error
|
||||
|
Reference in New Issue
Block a user