-
Notifications
You must be signed in to change notification settings - Fork 0
Open
1 / 11 of 1 issue completedDescription
Since we wanna our results persist on disk, we need to implement a loader for it.
Let's keep it simple for the beginning.
The database on disk should have the next structure:
${database_folder}/
${database_folder}/db_struct.yaml
${database_folder}/${table1}
${database_folder}/${table2}
Where ${database_folder}/db_struct.yaml has the next struct:
db_name: db_name
tables:
- table_name: users
table_structure:
- row_name: id
row_type: integer
- row_name: name
row_type: string
- row_name: email
row_type: stringAnd the ${database_folder}/${table1} is the binary representation of the table contents
Sub-issues
Metadata
Metadata
Assignees
Labels
No labels