tiny-db
tiny-db copied to clipboard
Tiny Database: Query Engine, Storage Engine, Calcite, ANTLR
Results
2
tiny-db issues
Sort by
recently updated
recently updated
newest added
There is an issue with the "where" condition for ANTLR Parser implementation. ```sql tinysql> select A,B from T2; +---+---------+ | A | B | +---+---------+ | 1 | 'Alice' |...
In `ConstantSerializer` we are assuming Index as Integer. We need to modify that logic to be generic enough for Constant class. ```java public class ConstantSerializer implements Serializer { @Override public...