diff options
Diffstat (limited to 'server/models/shared/abstract-run-query.ts')
-rw-r--r-- | server/models/shared/abstract-run-query.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/models/shared/abstract-run-query.ts b/server/models/shared/abstract-run-query.ts index c39b7bcfe..f1182c7be 100644 --- a/server/models/shared/abstract-run-query.ts +++ b/server/models/shared/abstract-run-query.ts | |||
@@ -25,4 +25,8 @@ export class AbstractRunQuery { | |||
25 | 25 | ||
26 | return this.sequelize.query<any>(this.query, queryOptions) | 26 | return this.sequelize.query<any>(this.query, queryOptions) |
27 | } | 27 | } |
28 | |||
29 | protected buildSelect (entities: string[]) { | ||
30 | return `SELECT ${entities.join(', ')} ` | ||
31 | } | ||
28 | } | 32 | } |