Fix format specifier bug in GET /names

Change-Id: Ia266a5c2377e98d5ca30d819e72b3e85f367640b
This commit is contained in:
Brad Klein 2016-06-13 08:45:55 -06:00
parent f562aad151
commit 0292ca9517
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class MetricDefinitionVerticaRepoImpl implements MetricDefinitionRepo {
TABLE_TO_JOIN_DIMENSIONS_ON),
limitPart);
String sql = String.format(FIND_METRIC_NAMES_SQL, defSubSelect);
String sql = String.format(FIND_METRIC_NAMES_SQL, this.dbHint, defSubSelect);
try (Handle h = db.open()) {