-
Notifications
You must be signed in to change notification settings - Fork 689
Fix regression WHERE (not) in (4.2.0) #1830
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
Merged
mathiasrw
merged 10 commits into
AlaSQL:develop
from
blueconic:maintenance/fix-regression-not-in
Nov 12, 2023
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2311648
Performance improvements for AlaSQL
paulrutter 5a4ea47
Performance improvements for AlaSQL
paulrutter b97071f
Performance improvements for AlaSQL
paulrutter 390d1e3
Performance improvements for AlaSQL
paulrutter 52bc322
Performance improvements for AlaSQL
paulrutter be32ef5
Performance improvements for AlaSQL
paulrutter b6ef4f8
Performance improvements for AlaSQL
paulrutter 547d17e
Performance improvements for AlaSQL
paulrutter e79527e
https://github.com/AlaSQL/alasql/issues/1829
paulrutter 2032bef
Merge branch 'develop_2' into maintenance/fix-regression-not-in
paulrutter File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| if (typeof exports === 'object') { | ||
| var assert = require('assert'); | ||
| var alasql = require('..'); | ||
| } else { | ||
| __dirname = '.'; | ||
| } | ||
|
|
||
| describe('Test 1829 - WHERE (NOT) IN Regression when using refs', function () { | ||
| beforeEach(function () { | ||
| alasql(`CREATE TABLE test1829 ( | ||
| id varchar(50) NOT NULL, | ||
| text varchar(10) NOT NULL, | ||
| PRIMARY KEY (id) | ||
| )`); | ||
| }); | ||
|
|
||
| afterEach(function () { | ||
| alasql('DROP TABLE test1829'); | ||
| }); | ||
|
|
||
| it('1. Where IN with refs', function (done) { | ||
| const rowId1 = 'id#1'; | ||
| const rowId2 = 'id#2'; | ||
|
|
||
| alasql('insert into test1829(id, text) values (?, ?)', [ | ||
| rowId1, | ||
| 'first text', | ||
| ]); | ||
| alasql('insert into test1829(id, text) values (?, ?)', [ | ||
| rowId2, | ||
| 'second text', | ||
| ]); | ||
|
|
||
| const selectedByIdRows = alasql(`select entity.id, entity.text from test1829 as entity where entity.id IN (?,?)`, [ | ||
| rowId1, | ||
| rowId2 | ||
| ]); | ||
| assert.equal(selectedByIdRows.length, 2); | ||
| assert.equal(selectedByIdRows[0].id, rowId1); | ||
| assert.equal(selectedByIdRows[1].id, rowId2); | ||
|
|
||
| done(); | ||
| }); | ||
|
|
||
| it('2. Where NOT IN with refs', function (done) { | ||
| const rowId1 = 'id#1'; | ||
| const rowId2 = 'id#2'; | ||
|
|
||
| alasql('insert into test1829(id, text) values (?, ?)', [ | ||
| rowId1, | ||
| 'first text', | ||
| ]); | ||
| alasql('insert into test1829(id, text) values (?, ?)', [ | ||
| rowId2, | ||
| 'second text', | ||
| ]); | ||
|
|
||
| const selectedByIdRows = alasql(`select entity.id, entity.text from test1829 as entity where entity.id NOT IN (?)`, [ | ||
| rowId1 | ||
| ]); | ||
| assert.equal(selectedByIdRows.length, 1); | ||
| assert.equal(selectedByIdRows[0].id, rowId2); | ||
| done(); | ||
| }); | ||
|
|
||
| }); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.