summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-03-25 14:54:07 +0400
committerunknown <bar@bar.mysql.r18.ru>2003-03-25 14:54:07 +0400
commitc8bdced21469ec1777abfea13662becc66944919 (patch)
tree2c02bcc4819ec908de293870e5b1e2d1931f3505
parent8816bbae1c9da57a2aadc14ebd5f311c0b099594 (diff)
downloadmariadb-git-c8bdced21469ec1777abfea13662becc66944919.tar.gz
sql_string.cc:
NATIONAL CHARACTER() has latin1 charset now. Reasons are (by Monty): I think we should keepy having latin1 (default configure option) as the national character set. The reason for this is simple that: - This is ok for a large part of the world. - It's faster and takes less space than utf8. sql/sql_string.cc: NATIONAL CHARACTER() has latin1 charset now. Reasons are (by Monty): I think we should keepy having latin1 (default configure option) as the national character set. The reason for this is simple that:
-rw-r--r--sql/sql_string.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_string.cc b/sql/sql_string.cc
index ffa272713de..e29883c190b 100644
--- a/sql/sql_string.cc
+++ b/sql/sql_string.cc
@@ -30,7 +30,7 @@
CHARSET_INFO *system_charset_info= &my_charset_utf8;
CHARSET_INFO *files_charset_info= &my_charset_utf8;
-CHARSET_INFO *national_charset_info= &my_charset_utf8;
+CHARSET_INFO *national_charset_info= &my_charset_latin1;
extern gptr sql_alloc(unsigned size);
extern void sql_element_free(void *ptr);