gtEqStr function
DSL to create 'is greater than or equal to' relational condition
Implementation
Cond<String> gtEqStr(String field, String rhs, {String? tableName}) =>
new Cond<String>(new Field<String>.inTable(tableName, field), Op.GtEq, rhs);