Details

    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

          Activity

            bar Alexander Barkov created issue -
            bar Alexander Barkov made changes -
            Field Original Value New Value
            bar Alexander Barkov made changes -
            Rank Ranked higher
            bar Alexander Barkov made changes -
            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.
            bar Alexander Barkov made changes -
            issue.field.resolutiondate 2019-08-12 14:41:32.0 2019-08-12 14:41:32.195
            bar Alexander Barkov made changes -
            Fix Version/s 10.5.0 [ 23709 ]
            Fix Version/s 10.5 [ 23123 ]
            Resolution Fixed [ 1 ]
            Status Open [ 1 ] Closed [ 6 ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 98883 ] MariaDB v4 [ 134062 ]

            People

              bar Alexander Barkov
              bar Alexander Barkov
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.