Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
The new code responsible for rounding (MDEV-16991) will reside inside class Temporal.
To take advantage of this rounding functionality easier, we'll move the code from Item_extract::val_int() to a new class:
class Extract_source: public Temporal |
{
|
...
|
};
|
The code in Item_extract::val_int() will change from:
MYSQL_TIME ltime;
|
if ((null_value= args[0]->get_date(current_thd, <ime, is_time_flag))) |
return 0; |
switch (int_type) { |
case INTERVAL_YEAR: return ltime.year; |
case INTERVAL_YEAR_MONTH: return ltime.year*100L+ltime.month; |
case INTERVAL_QUARTER: return (ltime.month+2)/3; |
...
|
}
|
to:
Extract_source dt(current_thd, args[0], m_date_mode);
|
if ((null_value= !dt.is_valid_extract_source())) |
return 0; |
switch (int_type) { |
case INTERVAL_YEAR: return dt.year(); |
case INTERVAL_YEAR_MONTH: return dt.year_month(); |
case INTERVAL_QUARTER: return dt.quarter(); |
...
|
}
|
Attachments
Issue Links
- blocks
-
MDEV-16991 Rounding vs truncation for TIME, DATETIME, TIMESTAMP
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue blocks |
Description |
The new code responsible for rounding ( To take advantage of this rounding functionality easier, we'll move the code from {{Item_extract::val_int()}} to a new class: {code:cpp} class Extract_source: public Temporal { ... }; {code} The code in {{Item_extract::val_int()}} will change from: {code:cpp} if ((null_value= args[0]->get_date(current_thd, <ime, is_time_flag))) return 0; switch (int_type) { case INTERVAL_YEAR: return ltime.year; case INTERVAL_YEAR_MONTH: return ltime.year*100L+ltime.month; case INTERVAL_QUARTER: return (ltime.month+2)/3; ... } {code} to: {code:cpp} Extract_source dt(current_thd, args[0], m_date_mode); if ((null_value= !dt.is_valid_extract_source())) return 0; switch (int_type) { case INTERVAL_YEAR: return dt.year(); case INTERVAL_YEAR_MONTH: return dt.year_month(); case INTERVAL_QUARTER: return dt.quarter(); ... } {code} |
The new code responsible for rounding ( To take advantage of this rounding functionality easier, we'll move the code from {{Item_extract::val_int()}} to a new class: {code:cpp} class Extract_source: public Temporal { ... }; {code} The code in {{Item_extract::val_int()}} will change from: {code:cpp} if ((null_value= args[0]->get_date(current_thd, <ime, is_time_flag))) return 0; switch (int_type) { case INTERVAL_YEAR: return ltime.year; case INTERVAL_YEAR_MONTH: return ltime.year*100L+ltime.month; case INTERVAL_QUARTER: return (ltime.month+2)/3; ... } {code} to: {code:cpp} Extract_source dt(current_thd, args[0], m_date_mode); if ((null_value= !dt.is_valid_extract_source())) return 0; switch (int_type) { case INTERVAL_YEAR: return dt.year(); case INTERVAL_YEAR_MONTH: return dt.year_month(); case INTERVAL_QUARTER: return dt.quarter(); ... } {code} |
Description |
The new code responsible for rounding ( To take advantage of this rounding functionality easier, we'll move the code from {{Item_extract::val_int()}} to a new class: {code:cpp} class Extract_source: public Temporal { ... }; {code} The code in {{Item_extract::val_int()}} will change from: {code:cpp} if ((null_value= args[0]->get_date(current_thd, <ime, is_time_flag))) return 0; switch (int_type) { case INTERVAL_YEAR: return ltime.year; case INTERVAL_YEAR_MONTH: return ltime.year*100L+ltime.month; case INTERVAL_QUARTER: return (ltime.month+2)/3; ... } {code} to: {code:cpp} Extract_source dt(current_thd, args[0], m_date_mode); if ((null_value= !dt.is_valid_extract_source())) return 0; switch (int_type) { case INTERVAL_YEAR: return dt.year(); case INTERVAL_YEAR_MONTH: return dt.year_month(); case INTERVAL_QUARTER: return dt.quarter(); ... } {code} |
The new code responsible for rounding ( To take advantage of this rounding functionality easier, we'll move the code from {{Item_extract::val_int()}} to a new class: {code:cpp} class Extract_source: public Temporal { ... }; {code} The code in {{Item_extract::val_int()}} will change from: {code:cpp} MYSQL_TIME ltime; if ((null_value= args[0]->get_date(current_thd, <ime, is_time_flag))) return 0; switch (int_type) { case INTERVAL_YEAR: return ltime.year; case INTERVAL_YEAR_MONTH: return ltime.year*100L+ltime.month; case INTERVAL_QUARTER: return (ltime.month+2)/3; ... } {code} to: {code:cpp} Extract_source dt(current_thd, args[0], m_date_mode); if ((null_value= !dt.is_valid_extract_source())) return 0; switch (int_type) { case INTERVAL_YEAR: return dt.year(); case INTERVAL_YEAR_MONTH: return dt.year_month(); case INTERVAL_QUARTER: return dt.quarter(); ... } {code} |
issue.field.resolutiondate | 2018-10-16 14:47:17.0 | 2018-10-16 14:47:17.175 |
Fix Version/s | 10.4.0 [ 23115 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 90114 ] | MariaDB v4 [ 133715 ] |