Is your feature request related to a problem?
Consider a query like:
source = idx1 | join left=l right=r on l.fieldname = r.fieldname idx2
It would be nice if, because fieldname is the same in both indices, we could write:
source = idx1 | join left=l right=r on fieldname idx2
This currently returns:
{
"error": {
"details": "Ambiguous field: fieldname",
"reason": "Invalid Query",
"type": "IllegalArgumentException"
},
"status": 400
}
What solution would you like?
Implement this type of auto-field-join
What alternatives have you considered?
At least make the error more obvious
Do you have any additional context?
N/A
Is your feature request related to a problem?
Consider a query like:
It would be nice if, because
fieldnameis the same in both indices, we could write:This currently returns:
{ "error": { "details": "Ambiguous field: fieldname", "reason": "Invalid Query", "type": "IllegalArgumentException" }, "status": 400 }What solution would you like?
Implement this type of auto-field-join
What alternatives have you considered?
At least make the error more obvious
Do you have any additional context?
N/A