Manish Khettry wrote: > Is it reasonable to exclude support for expressions in > the having clause in the first cut? i.e. > > -- this is supported. > select c1+c2, sum(c3) from test group by c1+c2; > > -- this is not. > select c1+c2, sum(c3) from test group by c1+c2 having > c1+c2 > 1;
Yes! Incremental development is strongly encouraged in open source projects, allows others to test your code earlier and others to work on improving it. Adding any functionality is seen as good, as long it is within the charter and does not regress the code base. Please submit whatever you have. Dan.