Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
We should eventually remove DTCollation from the top level Item class. Only string types really need it. It wastes memory for non-string Items.
As the first step, let's do the following:
- add a new class DTCollation_numeric
- change all:
collation.set_numeric()
to:
collation= DTCollation_numeric();
- remove virtual methods Field::derivation() and Field::repertoire()
- change Field::dtcollation() to be a virtual method:
virtual DTCollation dtcollation()= 0;
- Reuse DTCollation_numeric() in Field_numeric::dtcollation() and Field_temporal::dtcollation()
- Replace these members in Field_str:
// TODO-10.2: Reuse DTCollation instead of these three members
CHARSET_INFO *field_charset;
enum Derivation field_derivation;
uint field_repertoire;
to:
DTCollation m_collation;
Later we'll remove DTCollation from the top level Item class and replace it to a new Item virtual method:
virtual DTCollation dtcollation(); |
So numeric and temporal methods will return and instance of DTCollation_numeric(), by value or by reference.
Attachments
Issue Links
- blocks
-
MDEV-4912 Data type plugin API version 1
-
- Closed
-
Activity
Rank | Ranked higher |
Description |
We should eventually remove DTCollation from the top level Item class. Only string types really need it. It wastes memory for non-string Items.
As the first step, let's do the following: - add a new class DTCollation_numeric - change all: {code:cpp} collation.set_numeric() {code} to: {code:cpp} collation= DTCollation_numeric(); {code} - remove virtual methods {{Field::derivation()}} and {{Field::repertoire()}} - change Field::dtcollation() to be a virtual method: {code:cpp} virtual DTCollation dtcollation()= 0; {code} - Reuse DTCollation_numeric() in Field_numeric::dtcollation() and Field_temporal::dtcollation() Later we'll remove DTCollation from the top level Item class and replace it to a new Item virtual method: {code:cpp} virtual DTCollation dtcollation(); {code} So numeric and temporal methods will return and instance of DTCollation_numeric(), by value or by reference. |
We should eventually remove DTCollation from the top level Item class. Only string types really need it. It wastes memory for non-string Items.
As the first step, let's do the following: - add a new class DTCollation_numeric - change all: {code:cpp} collation.set_numeric() {code} to: {code:cpp} collation= DTCollation_numeric(); {code} - remove virtual methods {{Field::derivation()}} and {{Field::repertoire()}} - change Field::dtcollation() to be a virtual method: {code:cpp} virtual DTCollation dtcollation()= 0; {code} - Reuse DTCollation_numeric() in Field_numeric::dtcollation() and Field_temporal::dtcollation() - Replace these members in Field_str: {code:cpp} // TODO-10.2: Reuse DTCollation instead of these three members CHARSET_INFO *field_charset; enum Derivation field_derivation; uint field_repertoire; {code} to: {code:cpp} DTCollation m_collation; {code} Later we'll remove DTCollation from the top level Item class and replace it to a new Item virtual method: {code:cpp} virtual DTCollation dtcollation(); {code} So numeric and temporal methods will return and instance of DTCollation_numeric(), by value or by reference. |
issue.field.resolutiondate | 2019-08-12 14:41:32.0 | 2019-08-12 14:41:32.195 |
Fix Version/s | 10.5.0 [ 23709 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 98883 ] | MariaDB v4 [ 134062 ] |