You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-27 08:21:15 +03:00
This change fixes: MCOL-4462 CAST(varchar_expr AS DECIMAL(M,N)) returns a wrong result MCOL-4500 Bit functions processing throws internally trying to cast char into decimal representation MCOL-4532 CAST(AS DECIMAL) returns a garbage for large values Also, this change makes string-to-decimal conversion 5-10 times faster, depending on exact data. Performance implemenent is achieved by the fact that (unlike in the old implementation), the new version does not do any "string" object copying.
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
/* Copyright (C) 2020 MariaDB Corporation.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
|
|
#ifndef MARIADB_CONSTSTRING_H
|
|
#define MARIADB_CONSTSTRING_H
|
|
|
|
|
|
namespace utils
|
|
{
|
|
|
|
class ConstString
|
|
{
|
|
protected:
|
|
const char *mStr;
|
|
size_t mLength;
|
|
public:
|
|
ConstString(const char *str, size_t length)
|
|
:mStr(str), mLength(length)
|
|
{ }
|
|
explicit ConstString(const std::string &str)
|
|
:mStr(str.data()), mLength(str.length())
|
|
{ }
|
|
const char *str() const { return mStr; }
|
|
const char *end() const { return mStr + mLength; }
|
|
size_t length() const { return mLength; }
|
|
bool eq(char ch) const
|
|
{
|
|
return mLength == 1 && mStr[0] == ch;
|
|
}
|
|
ConstString & rtrimZero()
|
|
{
|
|
for ( ; mLength && mStr[mLength - 1] == '\0'; mLength--)
|
|
{ }
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
|
|
} // namespace utils
|
|
|
|
#endif // MARIADB_CONSTSTRING_H
|