Skip to content

Fix execute bug in client_base.py#67

Merged
hnwyllmm merged 1 commit into
oceanbase:developfrom
hnwyllmm:fix/execute
Dec 9, 2025
Merged

Fix execute bug in client_base.py#67
hnwyllmm merged 1 commit into
oceanbase:developfrom
hnwyllmm:fix/execute

Conversation

@hnwyllmm

@hnwyllmm hnwyllmm commented Dec 9, 2025

Copy link
Copy Markdown
Member

Summary

Fix execute bug in client_base.py

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request fixes a bug where incorrect method calls were made throughout client_base.py. The code was calling self.execute() (which doesn't exist) instead of the correct self._execute() method that is defined in the BaseConnection abstract class and implemented in both client implementations.

Key Changes:

  • Replaced all 13 occurrences of self.execute() with self._execute() in client_base.py
  • Added develop branch to CI workflow triggers for both push and pull_request events

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
src/pyseekdb/client/client_base.py Fixed all incorrect self.execute() calls to use self._execute() across collection management methods (create, get, delete, list, has) and collection operations (add, update, upsert)
.github/workflows/ci.yml Added develop branch to CI triggers to enable automated testing on the development branch

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@hnwyllmm hnwyllmm merged commit 134705f into oceanbase:develop Dec 9, 2025
13 checks passed
@hnwyllmm hnwyllmm deleted the fix/execute branch December 9, 2025 07:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants