You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT 1+1 FROM table; causes infinite loop that crashes.
Have a way to load a demo db from CLI
Add integration tests for SELECT 1 FROM table;, SELECT 1,2,3 FROM table;, SELECT 'alice' FROM table;
Multiple Errors with this statement SELECT id, 5 FROM demo WHERE name='alice' OR name='bob' UNION ALL SELECT id, 5 FROM demo ORDER BY name DESC;
Fix bug with HexLiterals being represented as Blobs in code incorrectly. Rename String, True and False -> StringLiteral, TrueLiteral and FalseLiteralDB - Fix bug with HexLiterals being Blobs #74
Phase 1:
Cargo testCI: Configure CI for project #21Cargo checkCI: CI - Add step to runcargo check#28ORDER BY: Feat: Add support for Order By column in Select statement. #27LIMIT / OFFSET:LIMIT / OFFSETwith Select statements #24Phase 2:
WHEREconditions withSELECTstatements.ISandIN#39WHEREstack #41DELETEstatements: DB -DELETEstatement implementation #42UPDATEstatementsUPDATEstatements supportingORDER BYandLIMIT / OFFSET#43UPDATEstatement implementation #44Phase 3 - Improvements
WHEREclause Short Circuiting: DB -WHEREClause Short-Circuiting #61CREATEimplementIF NOT EXISTS#55ALTER TABLEimplementation #58SELECTSet Operators Initial Implementation #52SELECTset operatorsORDER BY&LIMITclauses #54DISTINCTwithSELECTstatement #59Bugs
SELECT 1;is brokenSELECT 1+1 FROM table;causes infinite loop that crashes.SELECT 1 FROM table;,SELECT 1,2,3 FROM table;,SELECT 'alice' FROM table;SELECT id, 5 FROM demo WHERE name='alice' OR name='bob' UNION ALL SELECT id, 5 FROM demo ORDER BY name DESC;StringLiteral,TrueLiteralandFalseLiteralDB - Fix bug with HexLiterals being Blobs #74