Fixes a bug where the create function doesnt optional + required items (#7228)

Format sh file
This commit is contained in:
mustiikhalil
2022-04-09 00:28:54 +02:00
committed by GitHub
parent d658239484
commit 173ebb6944
5 changed files with 215 additions and 28 deletions

View File

@@ -1,3 +1,13 @@
table Message {
internal_message: string;
struct BytesCount {
x: int64;
}
table InternalMessage {
str: string;
}
table Message {
id: int64;
position: BytesCount (required);
pointer: InternalMessage (required);
}