Hacker News new | ask | show | jobs
by stevekemp 624 days ago
Nice job.

You can see this post for the start of a guide in implementing something very similar "Writing a SQL database from scratch in Go":

https://notes.eatonphil.com/database-basics.html

(Use the tag "sql" to find the later parts. Sadly not linked directly from that first one.)

1 comments

Thanks for mentioning! One of the most fun parts of this series I think is handling indexes on INSERT and actually making use of them based on (effectively) pattern matching on WHERE clauses.

> (Use the tag "sql" to find the later parts. Sadly not linked directly from that first one.)

There's a "Note" section right below that title that links to the other posts. :) I guess it is UX feedback that this was not obvious to spot.

Wow this is much more complete than mine, kudos.