Commit 9be7d586 by Ivana Huckova Committed by GitHub

Add truthy rawQuery as we are interpolating raw query only (#25110)

parent 328ea80c
......@@ -55,6 +55,7 @@ export class MssqlDatasource {
...query,
datasource: this.name,
rawSql: this.templateSrv.replace(query.rawSql, scopedVars, this.interpolateVariable),
rawQuery: true,
};
return expandedQuery;
});
......
......@@ -56,6 +56,7 @@ export class MysqlDatasource {
...query,
datasource: this.name,
rawSql: this.templateSrv.replace(query.rawSql, scopedVars, this.interpolateVariable),
rawQuery: true,
};
return expandedQuery;
});
......
......@@ -61,6 +61,7 @@ export class PostgresDatasource {
...query,
datasource: this.name,
rawSql: this.templateSrv.replace(query.rawSql, scopedVars, this.interpolateVariable),
rawQuery: true,
};
return expandedQuery;
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment