mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
revert special handling for IN
This commit is contained in:
parent
5e9a66de5f
commit
e6501f0f0e
@ -137,11 +137,7 @@ export default class PostgresQuery {
|
||||
value = this.templateSrv.replace(value, this.scopedVars);
|
||||
}
|
||||
|
||||
if (operator === "IN") {
|
||||
return str + constraint.key + ' ' + operator + ' (' + value + ')';
|
||||
} else {
|
||||
return str + constraint.key + ' ' + operator + ' ' + value;
|
||||
}
|
||||
return str + constraint.key + ' ' + operator + ' ' + value;
|
||||
}
|
||||
|
||||
interpolateQueryStr(value, variable, defaultFormatFn) {
|
||||
|
Loading…
Reference in New Issue
Block a user