vogievetsky commented on code in PR #13243:
URL: https://github.com/apache/druid/pull/13243#discussion_r1001102029
##########
web-console/src/helpers/spec-conversion.ts:
##########
@@ -38,10 +38,10 @@ export function getSpecDatasourceName(spec: IngestionSpec):
string {
function convertFilter(filter: any): SqlExpression {
switch (filter.type) {
case 'selector':
- return SqlRef.columnWithQuotes(filter.dimension).equal(filter.value);
+ return SqlRef.column(filter.dimension).equal(filter.value);
Review Comment:
In DQT 0.16.x the default behavior of `SqlRef.column` changed so
`SqlRef.column` is now identical to `SqlRef.columnWithQuotes`. (This is why
everything started adding quotes everywhere with relatively little code changes)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]