Add feature to Add to an existing Row#12
Merged
chetbox merged 4 commits intoclockwork-dog:mainfrom Nov 19, 2025
Merged
Conversation
chetbox
reviewed
Nov 11, 2025
chetbox
reviewed
Nov 11, 2025
Collaborator
|
This is neat, thanks so much! I left just a couple of comments for improvements. |
Changed from fetching all columns (A:ZZ) to: 1. First fetch only column A to find the key 2. Then fetch only the specific row to get its length This reduces data transfer while maintaining full functionality of appending values to existing rows. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
chetbox
reviewed
Nov 13, 2025
chetbox
reviewed
Nov 17, 2025
Collaborator
There was a problem hiding this comment.
One last tiny thing, could you remove this file? It's not a big deal but we just like to keep our repo so only necesary files are included.
chetbox
approved these changes
Nov 19, 2025
Collaborator
|
Thanks so much for this feature @guigro! ⚙️ |
Collaborator
|
This feature has been released in v0.3.0 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
How it works
Performance optimization
Instead of fetching all columns upfront, the code now:
This reduces data transfer significantly while maintaining full functionality.