typeorm 0.3.4 → 0.3.5-dev.eacecce

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
File without changes
@@ -2047,7 +2047,7 @@ export class SelectQueryBuilder extends QueryBuilder {
2047
2047
  }
2048
2048
  buildSelect(select, metadata, alias, embedPrefix) {
2049
2049
  for (let key in select) {
2050
- if (select[key] === undefined)
2050
+ if (select[key] === undefined || select[key] === false)
2051
2051
  continue;
2052
2052
  const propertyPath = embedPrefix ? embedPrefix + "." + key : key;
2053
2053
  const column = metadata.findColumnWithPropertyPathStrict(propertyPath);