From 5326ce6bca17efe66a144d8afba56af3a66053fd Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 28 May 2015 13:44:51 +0200 Subject: [PATCH] DbRepository: Add support for table specific aliases This was previously only possible for the base table and in case one wanted to use table aliases in the query column definition for non-base tables as well, it did not work well due to not being explicitly supported. Now, to use such table aliases one must initialize DbRepository::tableAliases. refs #8826 --- library/Icinga/Repository/DbRepository.php | 136 +++++++++++++++------ library/Icinga/Repository/Repository.php | 4 +- 2 files changed, 102 insertions(+), 38 deletions(-) diff --git a/library/Icinga/Repository/DbRepository.php b/library/Icinga/Repository/DbRepository.php index 433842a57..f3b0c679c 100644 --- a/library/Icinga/Repository/DbRepository.php +++ b/library/Icinga/Repository/DbRepository.php @@ -17,6 +17,7 @@ use Icinga\Exception\StatementException; * * Additionally provided features: *