-
Notifications
You must be signed in to change notification settings - Fork 664
New issue
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
4.2.0 regression : basic query using 'in' keyword working 4.1.11 and returning no result in 4.2.0 #1829
Comments
Performance improvements yesterday were indeed affecting IN and NOT IN, so it seems something was missed in the unit test coverage. Probably related to using |
@jbrazeau i have been able to reproduce and confirmed that my PR is indeed causing the regression. |
- Fix regression when using IN / NOT IN - Using refs didn't work anymore - Dropped set cache, as it's not really needed unless the same queries are performed often - Added unit test to guard behavior
@jbrazeau see related PR which should fix it. |
Thank you very much for paying attention to that issue. I've checked out the PR, built alasql and manually "patched" |
I would propose merging this and release as 4.2.1. |
Released as part of 4.2.1 |
I've upgraded alasql (4.1.10 -> 4.2.0) this morning and faced a regression.
I've isolated the problem in a trivial test available in the following git repository : https://gitlab.com/jean-francois.brazeau/alasql-bug-4.2.0
The repository contains a very basic test that :
in
keywordSimply run :
go-4.1.11.sh
to install[email protected]
and successfully run the test.go-4.2.0.sh
to install[email protected]
and notice that the query returns no result at the end of the script.The text was updated successfully, but these errors were encountered: