You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-669 TEXT cpimport fixes
* 64KB TEXT column had off-by-one length pointer counting * TEXT I_S/LDI was looping where it shouldn't causing pointer issues * TEXT data type wasn't fully understood by cpimport
This commit is contained in:
@ -153,11 +153,11 @@ public:
|
||||
UFLOAT, /*!< Unsigned FLOAT type */
|
||||
UBIGINT, /*!< Unsigned BIGINT type */
|
||||
UDOUBLE, /*!< Unsigned DOUBLE type */
|
||||
NUM_OF_COL_DATA_TYPE,
|
||||
TEXT, /*!< TEXT type */
|
||||
NUM_OF_COL_DATA_TYPE, /* NEW TYPES ABOVE HERE */
|
||||
LONGDOUBLE, /* @bug3241, dev and variance calculation only */
|
||||
STRINT, /* @bug3532, string as int for fast comparison */
|
||||
TEXT /*!< TEXT type */
|
||||
};
|
||||
STRINT /* @bug3532, string as int for fast comparison */
|
||||
};
|
||||
|
||||
/** the set of column constraint types
|
||||
*
|
||||
|
Reference in New Issue
Block a user