mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -812,8 +812,10 @@ struct xid_t {
|
||||
void set(long f, const char *g, long gl, const char *b, long bl)
|
||||
{
|
||||
formatID= f;
|
||||
memcpy(data, g, gtrid_length= gl);
|
||||
memcpy(data+gl, b, bqual_length= bl);
|
||||
if ((gtrid_length= gl))
|
||||
memcpy(data, g, gl);
|
||||
if ((bqual_length= bl))
|
||||
memcpy(data+gl, b, bl);
|
||||
}
|
||||
void set(ulonglong xid)
|
||||
{
|
||||
|
Reference in New Issue
Block a user