join multivalue variables with ,
This commit is contained in:
@@ -151,7 +151,7 @@ export default class PostgresQuery {
|
||||
}
|
||||
|
||||
var escapedValues = _.map(value, kbn.regexEscape);
|
||||
return '(' + escapedValues.join('|') + ')';
|
||||
return '(' + escapedValues.join(',') + ')';
|
||||
}
|
||||
|
||||
render(interpolate?) {
|
||||
|
||||
Reference in New Issue
Block a user