MySQL 8.4.0
Source Code Documentation
sql_lexer_thd.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2022, 2024, Oracle and/or its affiliates.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License, version 2.0,
6 as published by the Free Software Foundation.
7
8 This program is designed to work with certain software (including
9 but not limited to OpenSSL) that is licensed under separate terms,
10 as designated in a particular file or component or in included license
11 documentation. The authors of MySQL hereby grant you an additional
12 permission to link the program and your derivative works with the
13 separately licensed software that they have either included with
14 the program or referenced in the documentation.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24*/
25
26#ifndef ROUTING_SQL_LEXER_THD_INCLUDED
27#define ROUTING_SQL_LEXER_THD_INCLUDED
28
29#include <stdint.h>
30
31#include "my_alloc.h" // MEM_ROOT
32#include "my_sys.h" // strmake_root
33#include "mysql/strings/m_ctype.h" // CHARSET_INFO
35
36class THD {
37 public:
38 using sql_mode_t = uint64_t;
39
40 MEM_ROOT *mem_root{nullptr}; // Pointer to current memroot
41
43 bool convert_string(LEX_STRING * /* to */, const CHARSET_INFO * /* to_cs */,
44 const char * /* from */, size_t /* from_length */,
45 const CHARSET_INFO * /* from_cs */,
46 bool /* report_error */ = false) {
47 return true;
48 }
49
50 void *alloc(size_t size) { return mem_root->Alloc(size); }
51
52 char *strmake(const char *str, size_t size) const {
53 return strmake_root(mem_root, str, size);
54 }
55
56 public:
62 };
63
65
67};
68
69#endif
Internal state of the parser.
Definition: sql_lexer_parser_state.h:44
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
void * alloc(size_t size)
Definition: sql_lexer_thd.h:50
uint64_t sql_mode_t
Definition: sql_lexer_thd.h:38
Parser_state * m_parser_state
Internal parser state.
Definition: sql_lexer_thd.h:66
System_variables variables
Definition: sql_lexer_thd.h:64
bool convert_string(LEX_STRING *, const CHARSET_INFO *, const char *, size_t, const CHARSET_INFO *, bool=false)
Definition: sql_lexer_thd.h:43
const CHARSET_INFO * charset() const
Definition: sql_lexer_thd.h:42
char * strmake(const char *str, size_t size) const
Definition: sql_lexer_thd.h:52
MEM_ROOT * mem_root
Definition: sql_lexer_thd.h:40
char * strmake_root(MEM_ROOT *root, const char *str, size_t len)
Definition: my_alloc.cc:287
A better implementation of the UNIX ctype(3) library.
MYSQL_STRINGS_EXPORT CHARSET_INFO my_charset_utf8mb4_0900_ai_ci
Definition: ctype-uca.cc:9611
MYSQL_STRINGS_EXPORT CHARSET_INFO my_charset_latin1
Definition: ctype-latin1.cc:366
This file follows Google coding style, except for the name MEM_ROOT (which is kept for historical rea...
Common header for many mysys elements.
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1073
size_t size(const char *const c)
Definition: base64.h:46
Definition: m_ctype.h:423
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
void * Alloc(size_t length)
Allocate memory.
Definition: my_alloc.h:145
Definition: mysql_lex_string.h:35
Definition: sql_lexer_thd.h:57
sql_mode_t sql_mode
Definition: sql_lexer_thd.h:58
const CHARSET_INFO * character_set_client
Definition: sql_lexer_thd.h:59
const CHARSET_INFO * default_collation_for_utf8mb4
Definition: sql_lexer_thd.h:60