summaryrefslogtreecommitdiff
BranchCommit messageAuthorAge
masterFix the jdbc query executor for insert/update/delete operationsCarlo Zancanaro11 years
 
 
AgeCommit messageAuthor
2013-11-25Fix the jdbc query executor for insert/update/delete operationsHEADmasterCarlo Zancanaro
2013-11-25Remove a stupid testing thing, update the README a touchCarlo Zancanaro
2013-11-25Add a 'distinct' operator - still a bug to fix on renamingCarlo Zancanaro
2013-11-12Fix the database type detection in the jdbc executorCarlo Zancanaro
2013-11-12Potentially misleading typoCarlo Zancanaro
2013-11-12Change the query executor model: now it's query local and the interface is ma...Carlo Zancanaro
2013-11-12Fix a minor error in the README.Carlo Zancanaro
2013-11-12Ah, screw it. Have super long lines in the README.Carlo Zancanaro
2013-11-12Fix up the README which I formatted wrong. Whoops!Carlo Zancanaro
2013-11-12Fix grouping - it used to allow for groupings leaving a non-grouped field...Now it takes a third "projection" argument in which one can perform aggregate function over the existing fields. The fields of the resulting query are the union of the grouping fields and the projected fields (with the projected fields taking precedence). If you try to project a field without applying some sort of function to it then you'll get an exception, but at the moment no function calls are actually validated as aggregate functions (in order to do so we'd need a knowledge of all the aggregate functions, which isn't possible in general). Carlo Zancanaro
[...]