You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-597 stabilization
This commit is contained in:
@ -55,7 +55,7 @@ int64_t Func_div::getIntVal(rowgroup::Row& row,
|
||||
if (int_val2 == 0)
|
||||
{
|
||||
isNull = true;
|
||||
return NULL;
|
||||
return 0;
|
||||
}
|
||||
int64_t int_val1 = (int64_t)(val1 > 0 ? val1 + 0.5 : val1 - 0.5);
|
||||
// MCOL-176 If abs(int_val2) is small enough (like -1), then, this may cause overflow.
|
||||
@ -78,7 +78,7 @@ uint64_t Func_div::getUintVal(rowgroup::Row& row,
|
||||
if (val2 == 0)
|
||||
{
|
||||
isNull = true;
|
||||
return NULL;
|
||||
return 0;
|
||||
}
|
||||
return val1 / val2;
|
||||
}
|
||||
|
@ -27,7 +27,7 @@
|
||||
1008 ERR_CREATE_DATATYPE_NOT_SUPPORT The syntax or the data type(s) is not supported by Columnstore. Please check the Columnstore syntax guide for supported syntax or data types.
|
||||
1010 ERR_AGGREGATE_TYPE_NOT_SUPPORT '%1%' for column type '%2%' isn't supported.
|
||||
1011 ERR_DML_VIEW %1% on VIEW is currently not supported.
|
||||
#1012 ERR_UPDATE_NOT_SUPPORT_FEATURE This version of Columstore supports update of only one table at a time.
|
||||
1012 ERR_UPDATE_NOT_SUPPORT_FEATURE This version of Columnstore supports update of only one table at a time.
|
||||
1014 ERR_ROLLUP_NOT_SUPPORT Rollup is currently not supported.
|
||||
1015 ERR_OUTER_JOIN_SUBSELECT Subquery on OUTER JOIN ON clause is currently not supported.
|
||||
1016 ERR_PARTITION_BY_RANGE The column type %1% is currently not supported in %2% function.
|
||||
|
Reference in New Issue
Block a user