Added interpreters to is_null, multi_column, alias and select pseudo table

This commit is contained in:
rbock
2014-01-16 22:31:43 +01:00
parent 1c4d041b89
commit 9826ef79e4
13 changed files with 115 additions and 43 deletions

View File

@@ -92,5 +92,10 @@ int main()
interpret(t.as(t.alpha), printer).flush();
interpret(t.as(t.alpha).beta, printer).flush();
interpret(multi_column(t.alpha, t.alpha, (t.beta + "cake").as(t.gamma)), printer).flush();
interpret(t.alpha.is_null(), printer).flush();
interpret(select(t.alpha).from(t).where(t.beta > "kaesekuchen").as(t.gamma), printer).flush();
return 0;
}