Implement an in-memory databasewqa

This commit is contained in:
2021-06-19 17:47:36 -04:00
parent 9af3f78659
commit b66f5ebe67
14 changed files with 931 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
package ramdb
import "github.com/google/btree"
type index struct {
tree *btree.BTree
column string
table *table
}