minor file updates

This commit is contained in:
Nicholas Orlowsky 2023-08-08 14:55:46 -05:00 committed by Nicholas Orlowsky
parent 7000cdab31
commit dc89387128
6 changed files with 29 additions and 26 deletions

View file

@ -8,12 +8,18 @@ This is a SQL database written in Rust. It will be based off of (and hopefully b
## Feature roadmap
[ ] Table creation via CREATE with varchar & integer datatype
[X] CREATE TABLE with varchar & integer datatypes
[ ] SELECT * query
[X] INSERT INTO (non-batched)
[X] SELECT * query
[ ] DELETE command
[ ] SELECT (filtered columns) query
[ ] WHERE clause for SELECT and DELETE
[ ] Primary Keys via B+ Tree
[ ] Foreign Keys
@ -22,4 +28,4 @@ This is a SQL database written in Rust. It will be based off of (and hopefully b
[ ] Support [Postgres' messaging system](https://www.postgresql.org/docs/current/protocol-flow.html#id-1.10.6.7.3) (wire compatability)
... other stuff is TBD
... other stuff is TBD