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
@ -429,6 +429,21 @@ int DropTableStatement::serialize(ByteStream& bytestream)
|
||||
return ret;
|
||||
}
|
||||
|
||||
/** @brief Construct from Bytestream */
|
||||
int DebugDDLStatement::unserialize(ByteStream& bytestream)
|
||||
{
|
||||
bytestream >> fDebugLevel;
|
||||
return 1;
|
||||
}
|
||||
|
||||
/** @brief Serialize to ByteStream */
|
||||
int DebugDDLStatement::serialize(ByteStream& bytestream)
|
||||
{
|
||||
bytestream << (quadbyte)DDL_DEBUG_STATEMENT;
|
||||
bytestream << fDebugLevel;
|
||||
return 1;
|
||||
}
|
||||
|
||||
///////////////////////////////////////
|
||||
/// TruncTableStatement Serialization
|
||||
///////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user