Merge pull request #1963 from abrander/measurement-in-quotes

Quote 'measurement' properly in getAltSegments() (influxdb 0.9)
This commit is contained in:
Torkel Ödegaard
2015-05-07 20:29:34 +02:00
@@ -45,10 +45,10 @@ function (angular, _) {
query = 'SHOW MEASUREMENTS';
} else if (index % 2 === 1) {
queryType = 'TAG_KEYS';
query = 'SHOW TAG KEYS FROM ' + measurement;
query = 'SHOW TAG KEYS FROM "' + measurement + '"';
} else {
queryType = 'TAG_VALUES';
query = "SHOW TAG VALUES FROM " + measurement + " WITH KEY = " + $scope.segments[$scope.segments.length - 2].value;
query = 'SHOW TAG VALUES FROM "' + measurement + '" WITH KEY = ' + $scope.segments[$scope.segments.length - 2].value;
}
console.log('getAltSegments: query' , query);