1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-17204 Mariadb 10.3.9 Spider DB SQL Alias no execute (#1348)

This commit is contained in:
Kentoku SHIBA
2019-06-29 03:42:35 +09:00
committed by GitHub
parent d4bdf1c0b6
commit 76200870ea
14 changed files with 417 additions and 11 deletions

View File

@@ -29,6 +29,17 @@ public:
uint name_length,
CHARSET_INFO *name_charset
);
int append_escaped_name(
spider_string *str,
const char *name,
uint name_length
);
int append_escaped_name_with_charset(
spider_string *str,
const char *name,
uint name_length,
CHARSET_INFO *name_charset
);
bool is_name_quote(
const char head_code
);