beanquery
beanquery copied to clipboard
Implement `.*` oprator to select all fileds of a strctured type
Given a colum c
with structured typeT
having fields a
and b
, SELECT c.*
would be equivalent to SELECT c.a, c.b
.