You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-265 Add support for TIMESTAMP data type
This commit is contained in:
@ -121,6 +121,8 @@ int AlterTableStatement::unserialize(ByteStream& bytestream)
|
||||
// read table name
|
||||
fTableName->unserialize( bytestream );
|
||||
|
||||
bytestream >> fTimeZone;
|
||||
|
||||
// read alter action list
|
||||
quadbyte action_count;
|
||||
bytestream >> action_count;
|
||||
@ -228,6 +230,8 @@ int AlterTableStatement::serialize(ByteStream& bytestream)
|
||||
// write table name
|
||||
fTableName->serialize( bytestream );
|
||||
|
||||
bytestream << fTimeZone;
|
||||
|
||||
write_vec<AlterTableAction>(fActions, bytestream);
|
||||
|
||||
// write sessionid
|
||||
|
Reference in New Issue
Block a user