We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be great to be able reference other columns in filtering. I would like something like:
'column1' => new ColumnReference('column2')
column1 = column2
'column1!=' => new ColumnReference('column2')
column1 != column2
Bit problematic are cases like position = rating + 1 . In this case we are limited by operators being written in key:
position = rating + 1
'position+1' => new ColumnReference('rating')
I think best in long-term would be to move comparison from key to value:
'column1' => new EqualWith(new ColumnReference('column2'))
'column1' => new NotEqualWith(new ColumnReference('column2'))
'position' => new Sum(new ColumnReference('rating'), 1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great to be able reference other columns in filtering. I would like something like:
'column1' => new ColumnReference('column2')
-column1 = column2
'column1!=' => new ColumnReference('column2')
-column1 != column2
Bit problematic are cases like
position = rating + 1
. In this case we are limited by operators being written in key:'position+1' => new ColumnReference('rating')
??I think best in long-term would be to move comparison from key to value:
'column1' => new ColumnReference('column2')
- implicit ='column1' => new EqualWith(new ColumnReference('column2'))
- explicit ='column1' => new NotEqualWith(new ColumnReference('column2'))
- explicit !='position' => new Sum(new ColumnReference('rating'), 1)
- explicit +The text was updated successfully, but these errors were encountered: