Open desaikd opened 3 years ago
Currently load_schema method on schema_system returns Rc<Schema> but this can be removed by having two different implementation as below:
load_schema
schema_system
Rc<Schema>
Schema: Public facing wrapper type SchemaDefinition: Private struct which can store all the information on the schema
Currently
load_schema
method onschema_system
returnsRc<Schema>
but this can be removed by having two different implementation as below: