gt<ValType> function
DSL to create 'is greater than' relational condition
Implementation
Cond<ValType> gt<ValType>(String field, ValType rhs, {String? tableName}) =>
Cond<ValType>(Field<ValType>.inTable(tableName, field), Op.Gt, rhs);