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-104 First pass of InfiniDB rename in code
This commit is contained in:
@ -53,7 +53,7 @@ using namespace logging;
|
||||
namespace
|
||||
{
|
||||
|
||||
const int64_t infinidb_precision[19] =
|
||||
const int64_t columnstore_precision[19] =
|
||||
{
|
||||
0,
|
||||
9,
|
||||
@ -415,7 +415,7 @@ int64_t number_int_value(const string& data,
|
||||
(ct.colDataType == CalpontSystemCatalog::UDECIMAL) ||
|
||||
(ct.scale > 0))
|
||||
{
|
||||
int64_t rangeUp = infinidb_precision[ct.precision];
|
||||
int64_t rangeUp = columnstore_precision[ct.precision];
|
||||
int64_t rangeLow = -rangeUp;
|
||||
|
||||
if (intVal > rangeUp)
|
||||
|
Reference in New Issue
Block a user