Can coding agents build complex systems?
technicaldeft.com·21h·
Discuss: Hacker News

Written by Chris Zetter

Published 2025-09-20

Or, put another way, can you vibe code a database server?

AI coding agents can help make progress on a range of problems. But how good are they at building and architecting a complex project such as a relational database server that can run SQL?

Imagine the query SELECT email FROM users; A lot needs to happen for a database to be able to run it. First it needs to be parsed into a format that can be executed**.** Next the query needs to be validated to make sure the column and table exists. Lastly the query will be executed which includes loading data from a storage engine and returning it. More complex queries will also need to validate the type of expressions and resolve references, as well as filter, group, join and ag…

Similar Posts

Loading similar posts...