diff options
author | Alexander Barkov <bar@mariadb.com> | 2022-02-09 21:21:39 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.com> | 2022-03-22 17:12:15 +0400 |
commit | 0c4c064f98120e179ddfa49a1010d465a07bdc0a (patch) | |
tree | e8b4414484306ff6eb817269d34a07912e1f49df /strings | |
parent | d25b10fede8926f63203dfd2040ec60549d10936 (diff) | |
download | mariadb-git-0c4c064f98120e179ddfa49a1010d465a07bdc0a.tar.gz |
MDEV-27743 Remove Lex::charset
This patch also fixes:
MDEV-27690 Crash on `CHARACTER SET csname COLLATE DEFAULT` in column definition
MDEV-27853 Wrong data type on column `COLLATE DEFAULT` and table `COLLATE some_non_default_collation`
MDEV-28067 Multiple conflicting column COLLATE clauses are not rejected
MDEV-28118 Wrong collation of `CAST(.. AS CHAR COLLATE DEFAULT)`
MDEV-28119 Wrong column collation on MODIFY + CONVERT
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-bin.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/strings/ctype-bin.c b/strings/ctype-bin.c index bb746ad90b0..b7e07f4a8cf 100644 --- a/strings/ctype-bin.c +++ b/strings/ctype-bin.c @@ -630,3 +630,7 @@ struct charset_info_st my_charset_bin = &my_charset_handler, &my_collation_binary_handler }; + + +struct charset_info_st my_collation_contextually_typed_binary= {0}; +struct charset_info_st my_collation_contextually_typed_default= {0}; |