mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
dont quote where constraints
This commit is contained in:
parent
b7c7030a46
commit
958646d976
@ -137,7 +137,7 @@ export default class PostgresQuery {
|
||||
value = this.templateSrv.replace(value, this.scopedVars);
|
||||
}
|
||||
|
||||
return str + this.quoteIdentifier(constraint.key) + ' ' + operator + ' ' + this.quoteLiteral(value);
|
||||
return str + constraint.key + ' ' + operator + ' ' + value;
|
||||
}
|
||||
|
||||
interpolateQueryStr(value, variable, defaultFormatFn) {
|
||||
|
Loading…
Reference in New Issue
Block a user