You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-05 15:41:14 +03:00
Fix brocen quoter
This commit is contained in:
@ -75,7 +75,7 @@ long long dateGet(uint64_t time, IntervalColumn::interval_type unit, bool dateTy
|
|||||||
|
|
||||||
case IntervalColumn::INTERVAL_MICROSECOND: return msec;
|
case IntervalColumn::INTERVAL_MICROSECOND: return msec;
|
||||||
|
|
||||||
case IntervalColumn::INTERVAL_QUARTER: return month / 4 + 1;
|
case IntervalColumn::INTERVAL_QUARTER: return (month - 1) / 3 + 1;
|
||||||
|
|
||||||
case IntervalColumn::INTERVAL_WEEK: return helpers::calc_mysql_week(year, month, day, 0);
|
case IntervalColumn::INTERVAL_WEEK: return helpers::calc_mysql_week(year, month, day, 0);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user