-
Notifications
You must be signed in to change notification settings - Fork 58
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
GRAMEX-97 ⁃ ENH: Update multiple rows in files and DBs with data.update #456
Open
jaidevd
wants to merge
3
commits into
master
Choose a base branch
from
jd-update-multi
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
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 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 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 |
---|---|---|
|
@@ -597,6 +597,49 @@ def test_update(self): | |
gramex.data.update(data, args=args, id=['देश', 'city', 'product']) | ||
ase(types_original, data.dtypes) | ||
|
||
def test_update_multiple_file(self): | ||
# Test on a file | ||
|
||
update_file = os.path.join(folder, 'actors.update.csv') | ||
shutil.copy(os.path.join(folder, '..', 'tests/actors.csv'), update_file) | ||
self.tmpfiles.append(update_file) | ||
|
||
names = ['Humphrey Bogart', 'James Stewart', 'Audrey Hepburn'] | ||
categories = ['Stars', 'Thespians', 'Heartthrobs'] | ||
ratings = [1, 0.99, 1.11] | ||
gramex.data.update( | ||
update_file, | ||
args={ | ||
'name': names, | ||
'category': categories, | ||
'rating': ratings | ||
}, id=['name'] | ||
) | ||
df = gramex.data.filter(update_file, args={'name': names}) | ||
self.assertEqual(df['category'].tolist(), categories) | ||
self.assertEqual(df['rating'].tolist(), ratings) | ||
|
||
def test_update_multiple_db(self): | ||
actors = gramex.cache.open(os.path.join(folder, '../tests/actors.csv')) | ||
temp_db = f'sqlite:///{folder}/actors.db' | ||
self.tmpfiles.append(os.path.join(folder, 'actors.db')) | ||
actors.to_sql('actors', sa.create_engine(temp_db), index=False) | ||
|
||
names = ['Humphrey Bogart', 'James Stewart', 'Audrey Hepburn'] | ||
categories = ['Stars', 'Thespians', 'Heartthrobs'] | ||
ratings = [1, 0.99, 1.11] | ||
gramex.data.update( | ||
temp_db, | ||
args={ | ||
'name': names, | ||
'category': categories, | ||
'rating': ratings | ||
}, id=['name'], table='actors' | ||
) | ||
df = gramex.data.filter(temp_db, args={'name': names}, table='actors') | ||
self.assertEqual(df['category'].tolist(), categories) | ||
self.assertEqual(df['rating'].tolist(), ratings) | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add test cases for MySQL, PostgreSQL. |
||
def test_delete(self): | ||
raise SkipTest('TODO: write delete test cases') | ||
|
||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a test case where
ratings
has only 2 values [1, 0.99] and the third is missing. Audrey's rating should not get updated, but her categories should be.names
has only 2 values -- in which case, the 3rd category and rating are ignoredThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sanand0 This works for files, but for sqlalchemy, to deal with uneven args, we might have to do column-wise update queries. Is this acceptable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jaidevd -- yes, column-wise update queries are fine. I don't anticipate this to be used often and we can optimize later