mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
Make BIN table files more flexible with new column format.
In particular enable to set length and endian setting. This should solve all problems on IBM390s machines. modified: storage/connect/ha_connect.cc modified: storage/connect/tabfix.cpp modified: storage/connect/tabfix.h Make DBF tables to be usable in big-endian machines (test version) modified: storage/connect/filamdbf.cpp Ignore git files on storage/connect modified: .gitignore
This commit is contained in:
parent
3810fefc65
commit
e6b60ee5af
5 changed files with 148 additions and 44 deletions
|
|
@ -153,6 +153,7 @@
|
|||
#endif // LIBXML2_SUPPORT
|
||||
#include "taboccur.h"
|
||||
#include "tabpivot.h"
|
||||
#include "tabfix.h"
|
||||
|
||||
#define my_strupr(p) my_caseup_str(default_charset_info, (p));
|
||||
#define my_strlwr(p) my_casedn_str(default_charset_info, (p));
|
||||
|
|
@ -656,6 +657,7 @@ static int connect_init_func(void *p)
|
|||
sql_print_information("connect_init: hton=%p", p);
|
||||
|
||||
DTVAL::SetTimeShift(); // Initialize time zone shift once for all
|
||||
BINCOL::SetEndian(); // Initialize host endian setting
|
||||
DBUG_RETURN(0);
|
||||
} // end of connect_init_func
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue