| 192 | }; |
| 193 | |
| 194 | bool Binder::reservedInColumnName(const std::string& name) { |
| 195 | auto normalizedName = StringUtils::getUpper(name); |
| 196 | return ReservedNames::getColumnNames().contains(normalizedName); |
| 197 | } |
| 198 | |
| 199 | bool Binder::reservedInPropertyLookup(const std::string& name) { |
| 200 | auto normalizedName = StringUtils::getUpper(name); |
nothing calls this directly
no test coverage detected