Extending gosql to supporting LIMIT and OFFSET

from blog Notes on software development, | ↗ original
It's been a few months since I picked up gosql and I wanted to use it to prototype a SQL interface for data stored in S3. But one missing critical feature in gosql is LIMIT and OFFSET support. This post walks through the few key changes to gosql to support LIMIT and OFFSET. You can find this commit in full on Github. This post builds on top of...