1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
|
#ifndef SQL_STRING_INCLUDED
#define SQL_STRING_INCLUDED
/* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
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, version 2.0, 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 St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file include/sql_string.h
Our own string classes, used pervasively throughout the executor.
See in particular the comment on String before you use anything from here.
*/
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include <sys/types.h>
#include <new>
#include <string>
#include <string_view>
#include "lex_string.h"
#include "m_ctype.h" // my_convert
#include "m_string.h" // LEX_CSTRING
#include "memory_debugging.h"
#include "my_alloc.h"
#include "my_compiler.h"
#include "my_sys.h"
#include "my_inttypes.h"
#include "mysql/components/services/bits/psi_bits.h"
#include "mysql/mysql_lex_string.h" // LEX_STRING
#include "mysql/psi/psi_memory.h"
#include "mysql/service_mysql_alloc.h" // my_free
struct MEM_ROOT;
#ifdef MYSQL_SERVER
extern PSI_memory_key key_memory_String_value;
#define STRING_PSI_MEMORY_KEY key_memory_String_value
#else
#define STRING_PSI_MEMORY_KEY PSI_NOT_INSTRUMENTED
#endif
/**
A wrapper class for null-terminated constant strings.
Constructors make sure that the position of the '\0' terminating byte
in m_str is always in sync with m_length.
This class must stay as small as possible as we often
pass it and its descendants (such as Name_string) into functions
using call-by-value evaluation.
Don't add new members or virtual methods to this class!
*/
class Simple_cstring {
private:
const char *m_str;
size_t m_length;
public:
/**
Initialize from a C string whose length is already known.
*/
void set(const char *str_arg, size_t length_arg) {
// NULL is allowed only with length==0
assert(str_arg || length_arg == 0);
// For non-NULL, make sure length_arg is in sync with '\0' terminator.
assert(!str_arg || str_arg[length_arg] == '\0');
m_str = str_arg;
m_length = length_arg;
}
Simple_cstring() { set(nullptr, 0); }
Simple_cstring(const char *str_arg, size_t length_arg) {
set(str_arg, length_arg);
}
Simple_cstring(const LEX_STRING arg) { set(arg.str, arg.length); }
Simple_cstring(const LEX_CSTRING arg) { set(arg.str, arg.length); }
void reset() { set(nullptr, 0); }
/**
Set to a null-terminated string.
*/
void set(const char *str) { set(str, str ? strlen(str) : 0); }
/**
Return string buffer.
*/
const char *ptr() const { return m_str; }
/**
Check if m_ptr is set.
*/
bool is_set() const { return m_str != nullptr; }
/**
Return name length.
*/
size_t length() const { return m_length; }
/**
Compare to another Simple_cstring.
*/
bool eq_bin(const Simple_cstring other) const {
return m_length == other.m_length &&
memcmp(m_str, other.m_str, m_length) == 0;
}
/**
Copy to the given buffer
*/
void strcpy(char *buff) const {
memcpy(buff, m_str, m_length);
buff[m_length] = '\0';
}
};
class String;
struct CHARSET_INFO;
struct IO_CACHE;
bool validate_string(const CHARSET_INFO *cs, const char *str, size_t length,
size_t *valid_length, bool *length_error);
int sortcmp(const String *a, const String *b, const CHARSET_INFO *cs);
String *copy_if_not_alloced(String *to, String *from, size_t from_length);
inline size_t copy_and_convert(char *to, size_t to_length,
const CHARSET_INFO *to_cs, const char *from,
size_t from_length, const CHARSET_INFO *from_cs,
uint *errors) {
return my_convert(to, to_length, to_cs, from, from_length, from_cs, errors);
}
size_t well_formed_copy_nchars(const CHARSET_INFO *to_cs, char *to,
size_t to_length, const CHARSET_INFO *from_cs,
const char *from, size_t from_length,
size_t nchars,
const char **well_formed_error_pos,
const char **cannot_convert_error_pos,
const char **from_end_pos);
size_t convert_to_printable(char *to, size_t to_len, const char *from,
size_t from_len, const CHARSET_INFO *from_cs,
size_t nbytes = 0);
size_t bin_to_hex_str(char *to, size_t to_len, const char *from,
size_t from_len);
/**
Using this class is fraught with peril, and you need to be very careful
when doing so. In particular, copy construction and assignment does not
do a deep _nor_ a shallow copy; instead, it makes a _reference_ to the
original string that will be invalid as soon as that string goes out of scope.
(Move constructiong and assignment is safe, though.) In general, it is
probably better not to use this class at all if you can avoid it.
*/
class String {
char *m_ptr;
size_t m_length;
const CHARSET_INFO *m_charset;
uint32
m_alloced_length; // should be size_t, but kept uint32 for size reasons
bool m_is_alloced;
public:
String()
: m_ptr(nullptr),
m_length(0),
m_charset(&my_charset_bin),
m_alloced_length(0),
m_is_alloced(false) {}
explicit String(size_t length_arg)
: m_ptr(nullptr),
m_length(0),
m_charset(&my_charset_bin),
m_alloced_length(0),
m_is_alloced(false) {
(void)real_alloc(length_arg);
}
String(const char *str, const CHARSET_INFO *cs)
: m_ptr(const_cast<char *>(str)),
m_length(strlen(str)),
m_charset(cs),
m_alloced_length(0),
m_is_alloced(false) {}
String(const char *str, size_t len, const CHARSET_INFO *cs)
: m_ptr(const_cast<char *>(str)),
m_length(len),
m_charset(cs),
m_alloced_length(0),
m_is_alloced(false) {}
String(char *str, size_t len, const CHARSET_INFO *cs)
: m_ptr(str),
m_length(len),
m_charset(cs),
m_alloced_length(static_cast<uint32>(len)),
m_is_alloced(false) {}
String(const String &str)
: m_ptr(str.m_ptr),
m_length(str.m_length),
m_charset(str.m_charset),
m_alloced_length(static_cast<uint32>(str.m_alloced_length)),
m_is_alloced(false) {}
String(String &&str) noexcept
: m_ptr(str.m_ptr),
m_length(str.m_length),
m_charset(str.m_charset),
m_alloced_length(str.m_alloced_length),
m_is_alloced(str.m_is_alloced) {
str.m_is_alloced = false;
}
static void *operator new(size_t size, MEM_ROOT *mem_root,
const std::nothrow_t &arg
[[maybe_unused]] = std::nothrow) noexcept {
return mem_root->Alloc(size);
}
static void operator delete(void *ptr_arg, size_t size) {
(void)ptr_arg;
(void)size;
TRASH(ptr_arg, size);
}
static void operator delete(
void *, MEM_ROOT *, const std::nothrow_t &) noexcept { /* never called */
}
~String() { mem_free(); }
void set_charset(const CHARSET_INFO *charset_arg) { m_charset = charset_arg; }
const CHARSET_INFO *charset() const { return m_charset; }
size_t length() const { return m_length; }
size_t alloced_length() const { return m_alloced_length; }
const char &operator[](size_t i) const { return m_ptr[i]; }
char &operator[](size_t i) { return m_ptr[i]; }
void length(size_t len) { m_length = len; }
bool is_empty() const { return (m_length == 0); }
void mark_as_const() { m_alloced_length = 0; }
/* Returns a pointer to data, may not include NULL terminating character. */
const char *ptr() const { return m_ptr; }
char *ptr() { return m_ptr; }
char *c_ptr() {
assert(!m_is_alloced || !m_ptr || !m_alloced_length ||
(m_alloced_length >= (m_length + 1)));
/*
Should be safe, but in case valgrind complains on this line, it means
there is a misuse of c_ptr(). Please prefer <ptr(), length()> instead.
*/
if (!m_ptr || m_ptr[m_length]) (void)mem_realloc(m_length);
return m_ptr;
}
char *c_ptr_quick() {
if (m_ptr && m_length < m_alloced_length) m_ptr[m_length] = 0;
return m_ptr;
}
char *c_ptr_safe() {
if (m_ptr && m_length < m_alloced_length)
m_ptr[m_length] = 0;
else
(void)mem_realloc(m_length);
return m_ptr;
}
LEX_STRING lex_string() { return {m_ptr, length()}; }
LEX_CSTRING lex_cstring() const {
LEX_CSTRING lex_cstring = {ptr(), length()};
return lex_cstring;
}
void set(String &str, size_t offset, size_t arg_length) {
assert(&str != this);
mem_free();
m_ptr = str.ptr() + offset;
m_length = arg_length;
m_is_alloced = false;
if (str.m_alloced_length)
m_alloced_length = str.m_alloced_length - static_cast<uint32>(offset);
else
m_alloced_length = 0;
m_charset = str.m_charset;
}
/**
Points the internal buffer to the supplied one. The old buffer is freed.
@param str Pointer to the new buffer.
@param arg_length Length of the new buffer in characters, excluding any
null character.
@param cs Character set to use for interpreting string data.
@note The new buffer will not be null terminated.
*/
void set(char *str, size_t arg_length, const CHARSET_INFO *cs) {
mem_free();
m_ptr = str;
m_length = m_alloced_length = static_cast<uint32>(arg_length);
m_is_alloced = false;
m_charset = cs;
}
void set(const char *str, size_t arg_length, const CHARSET_INFO *cs) {
mem_free();
m_ptr = const_cast<char *>(str);
m_length = arg_length;
m_alloced_length = 0;
m_is_alloced = false;
m_charset = cs;
}
bool set_ascii(const char *str, size_t arg_length);
void set_quick(char *str, size_t arg_length, const CHARSET_INFO *cs) {
if (!m_is_alloced) {
m_ptr = str;
m_length = arg_length;
m_alloced_length = static_cast<uint32>(arg_length);
}
m_charset = cs;
}
bool set_int(longlong num, bool unsigned_flag, const CHARSET_INFO *cs);
bool set(longlong num, const CHARSET_INFO *cs) {
return set_int(num, false, cs);
}
bool set(ulonglong num, const CHARSET_INFO *cs) {
return set_int((longlong)num, true, cs);
}
/**
Sets the contents of this string to the string representation of the given
double value.
@param num the double value
@param decimals the number of decimals
@param cs the character set of the string
@return false on success, true on error
*/
bool set_real(double num, uint decimals, const CHARSET_INFO *cs);
/*
PMG 2004.11.12
This is a method that works the same as perl's "chop". It simply
drops the last byte of a string. This is useful in the case
of the federated storage handler where I'm building a unknown
number, list of values and fields to be used in a sql insert
statement to be run on the remote server, and have a comma after each.
When the list is complete, I "chop" off the trailing comma
ex.
String stringobj;
stringobj.append("VALUES ('foo', 'fi', 'fo',");
stringobj.chop();
stringobj.append(")");
In this case, the value of string was:
VALUES ('foo', 'fi', 'fo',
VALUES ('foo', 'fi', 'fo'
VALUES ('foo', 'fi', 'fo')
This is not safe to call when the string ends in a multi-byte character!
*/
void chop() {
m_length--;
m_ptr[m_length] = '\0';
}
void mem_claim(bool claim) {
if (m_is_alloced) {
my_claim(m_ptr, claim);
}
}
void mem_free() {
if (m_is_alloced) {
m_is_alloced = false;
m_alloced_length = 0;
my_free(m_ptr);
m_ptr = nullptr;
m_length = 0; /* Safety */
}
}
bool alloc(size_t arg_length) {
if (arg_length < m_alloced_length) return false;
return real_alloc(arg_length);
}
bool real_alloc(size_t arg_length); // Empties old string
bool mem_realloc(size_t arg_length, bool force_on_heap = false);
private:
size_t next_realloc_exp_size(size_t sz);
bool mem_realloc_exp(size_t arg_length);
public:
// Shrink the buffer, but only if it is allocated on the heap.
void shrink(size_t arg_length) {
if (!is_alloced()) return;
if (arg_length < m_alloced_length) {
char *new_ptr;
if (!(new_ptr = static_cast<char *>(my_realloc(
STRING_PSI_MEMORY_KEY, m_ptr, arg_length, MYF(0))))) {
m_alloced_length = 0;
real_alloc(arg_length);
} else {
m_ptr = new_ptr;
m_alloced_length = static_cast<uint32>(arg_length);
}
}
}
bool is_alloced() const { return m_is_alloced; }
String &operator=(const String &s) {
if (&s != this) {
/*
It is forbidden to do assignments like
some_string = substring_of_that_string
*/
assert(!s.uses_buffer_owned_by(this));
mem_free();
m_ptr = s.m_ptr;
m_length = s.m_length;
m_alloced_length = s.m_alloced_length;
m_charset = s.m_charset;
m_is_alloced = false;
}
return *this;
}
String &operator=(String &&s) noexcept {
if (&s != this) {
/*
It is forbidden to do assignments like
some_string = substring_of_that_string
*/
assert(!s.uses_buffer_owned_by(this));
mem_free();
m_ptr = s.m_ptr;
m_length = s.m_length;
m_alloced_length = s.m_alloced_length;
m_charset = s.m_charset;
// This is the primary difference between move and copy.
m_is_alloced = s.m_is_alloced;
s.m_is_alloced = false;
}
return *this;
}
/**
Takeover the buffer owned by another string.
"this" becomes the owner of the buffer and
is further responsible to free it.
The string "s" is detached from the buffer (cleared).
@param s - a String object to steal buffer from.
*/
void takeover(String &s) {
assert(this != &s);
// Make sure buffers of the two Strings do not overlap
assert(!s.uses_buffer_owned_by(this));
mem_free();
m_ptr = s.m_ptr;
m_length = s.m_length;
m_alloced_length = s.m_alloced_length;
m_is_alloced = s.m_is_alloced;
m_charset = s.m_charset;
s.m_ptr = nullptr;
s.m_alloced_length = 0;
s.m_length = 0;
s.m_is_alloced = false;
}
bool copy(); // Alloc string if not allocated
bool copy(const String &s); // Allocate new string
// Allocate new string
bool copy(const char *s, size_t arg_length, const CHARSET_INFO *cs);
static bool needs_conversion(size_t arg_length, const CHARSET_INFO *cs_from,
const CHARSET_INFO *cs_to, size_t *offset);
bool needs_conversion(const CHARSET_INFO *cs_to) const {
size_t offset;
return needs_conversion(length(), charset(), cs_to, &offset);
}
bool is_valid_string(const CHARSET_INFO *cs_to) const {
size_t valid_length;
bool length_error;
return !validate_string(cs_to, ptr(), length(), &valid_length,
&length_error);
}
static bool needs_conversion_on_storage(size_t arg_length,
const CHARSET_INFO *cs_from,
const CHARSET_INFO *cs_to);
bool copy_aligned(const char *s, size_t arg_length, size_t offset,
const CHARSET_INFO *cs);
bool set_or_copy_aligned(const char *s, size_t arg_length,
const CHARSET_INFO *cs);
bool copy(const char *s, size_t arg_length, const CHARSET_INFO *csfrom,
const CHARSET_INFO *csto, uint *errors);
bool append(const String &s);
bool append(std::string_view s) { return append(s.data(), s.size()); }
bool append(LEX_STRING *ls) { return append(ls->str, ls->length); }
bool append(Simple_cstring str) { return append(str.ptr(), str.length()); }
bool append(const char *s, size_t arg_length);
bool append(const char *s, size_t arg_length, const CHARSET_INFO *cs);
bool append_ulonglong(ulonglong val);
bool append_longlong(longlong val);
bool append_with_prefill(const char *s, size_t arg_length, size_t full_length,
char fill_char);
bool append_parenthesized(int64_t nr);
/**
Search for a substring.
@param search substring to search for
@param offset starting point, bytes from the start of the string
@return byte offset to the substring from the start of this string
@retval -1 if the substring is not found starting from the offset
*/
int strstr(const String &search, size_t offset = 0) const;
/**
Reverse search for a substring.
@param search substring to search for
@param offset starting point, bytes from the start of the string
@return byte offset to the substring from the start of this string
@retval -1 if the substring is not found starting from the offset
*/
int strrstr(const String &search, size_t offset = 0) const;
/**
* Returns substring of given characters length, starting at given character
* offset. Note that parameter indexes are character indexes and not byte
* indexes.
*/
String substr(int offset, int count) const;
bool replace(size_t offset, size_t arg_length, const char *to, size_t length);
bool replace(size_t offset, size_t arg_length, const String &to);
bool append(char chr) {
if (m_length < m_alloced_length) {
m_ptr[m_length++] = chr;
} else {
if (mem_realloc_exp(m_length + 1)) return true;
m_ptr[m_length++] = chr;
}
return false;
}
bool fill(size_t max_length, char fill);
friend int sortcmp(const String *a, const String *b, const CHARSET_INFO *cs);
friend int stringcmp(const String *a, const String *b);
friend String *copy_if_not_alloced(String *to, String *from,
size_t from_length);
size_t numchars() const;
size_t charpos(size_t i, size_t offset = 0) const;
bool reserve(size_t space_needed) {
if (m_alloced_length < m_length + space_needed) {
return mem_realloc(m_length + space_needed);
}
return false;
}
bool reserve(size_t space_needed, size_t grow_by);
/* Inline (general) functions used by the protocol functions */
char *prep_append(size_t arg_length, size_t step_alloc) {
size_t new_length = arg_length + m_length;
if (new_length > m_alloced_length) {
if (mem_realloc(new_length + step_alloc)) return nullptr;
}
size_t old_length = m_length;
m_length += arg_length;
return m_ptr + old_length; /* Area to use */
}
bool append(const char *s, size_t arg_length, size_t step_alloc) {
size_t new_length = arg_length + m_length;
if (new_length > m_alloced_length &&
mem_realloc_exp(new_length + step_alloc))
return true;
memcpy(m_ptr + m_length, s, arg_length);
m_length += arg_length;
return false;
}
void print(String *print) const;
/* Swap two string objects. Efficient way to exchange data without memcpy. */
void swap(String &s) noexcept;
bool uses_buffer_owned_by(const String *s) const {
return (s->m_is_alloced && m_ptr >= s->m_ptr &&
m_ptr < s->m_ptr + s->m_length);
}
bool is_ascii() const {
if (length() == 0) return true;
if (charset()->mbminlen > 1) return false;
for (const char *c = ptr(), *end = c + length(); c < end; c++) {
if (!my_isascii(*c)) return false;
}
return true;
}
/**
Make a zero-terminated copy of our value,allocated in the specified MEM_ROOT
@param root MEM_ROOT to allocate the result
@return allocated string or NULL
*/
char *dup(MEM_ROOT *root) const;
};
/**
Checks that the source string can be just copied to the destination string
without conversion.
@param arg_length Length of string to copy.
@param from_cs Character set to copy from
@param to_cs Character set to copy to
@param *offset Returns number of unaligned characters.
@returns true if conversion is required, false otherwise.
@note
to_cs may be nullptr for "no conversion" if the system variable
character_set_results is NULL.
*/
inline bool String::needs_conversion(size_t arg_length,
const CHARSET_INFO *from_cs,
const CHARSET_INFO *to_cs,
size_t *offset) {
*offset = 0;
if (to_cs == nullptr || (to_cs == &my_charset_bin) || from_cs == to_cs ||
my_charset_same(from_cs, to_cs) ||
((from_cs == &my_charset_bin) &&
(0 == (*offset = (arg_length % to_cs->mbminlen)))))
return false;
return true;
}
static inline void swap(String &a, String &b) noexcept { a.swap(b); }
static inline std::string to_string(const String &str) {
return std::string(str.ptr(), str.length());
}
/**
String class wrapper with a preallocated buffer of size buff_sz
This class allows to replace sequences of:
char buff[12345];
String str(buff, sizeof(buff));
str.length(0);
with a simple equivalent declaration:
StringBuffer<12345> str;
*/
template <size_t buff_sz>
class StringBuffer : public String {
char buff[buff_sz];
public:
StringBuffer() : String(buff, buff_sz, &my_charset_bin) { length(0); }
explicit StringBuffer(const CHARSET_INFO *cs) : String(buff, buff_sz, cs) {
length(0);
}
StringBuffer(const char *str, size_t length, const CHARSET_INFO *cs)
: String(buff, buff_sz, cs) {
set(str, length, cs);
}
};
static inline bool check_if_only_end_space(const CHARSET_INFO *cs,
const char *str, const char *end) {
return str + cs->cset->scan(cs, str, end, MY_SEQ_SPACES) == end;
}
inline LEX_CSTRING to_lex_cstring(const LEX_STRING &s) {
LEX_CSTRING cstr = {s.str, s.length};
return cstr;
}
inline LEX_STRING to_lex_string(const LEX_CSTRING &s) {
LEX_STRING str = {const_cast<char *>(s.str), s.length};
return str;
}
inline LEX_CSTRING to_lex_cstring(const char *s) {
LEX_CSTRING cstr = {s, s != nullptr ? strlen(s) : 0};
return cstr;
}
bool append_escaped(String *to_str, const String *from_str);
#endif /* SQL_STRING_INCLUDED */
|