Skip to content
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

Refactor query execution to use connection object #290

Merged
merged 35 commits into from
Jan 7, 2025
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1f022b9
Add test_create_func
auxten Dec 18, 2024
fee555a
Ignore minitest
auxten Dec 19, 2024
0b9603d
Initialize thread status to prevent logical errors in new threads
auxten Dec 19, 2024
275ee30
Add support for user-defined functions in connection parameters
auxten Dec 19, 2024
8a37b31
Handle query errors by throwing exceptions and release GIL during que…
auxten Dec 19, 2024
7f74065
Enhance connection string documentation to include support for in-mem…
auxten Dec 19, 2024
9a23333
Refactor Session class to enhance connection string handling and impr…
auxten Dec 19, 2024
5972d08
Refactor query execution to use connection object and enhance connect…
auxten Dec 19, 2024
85ffa21
Fix session initialization and cleanup in arrow_table tests
auxten Dec 19, 2024
85558ad
Refactor tests to improve session management and enhance query execution
auxten Dec 19, 2024
55943c2
Enable RapidJSON for support json function like JSONMergePatch #291
auxten Dec 23, 2024
e2f6598
Add more log for test
auxten Dec 27, 2024
af485c4
Refactor connection handling to use a query queue for asynchronous qu…
auxten Dec 27, 2024
1d13523
Move Python object finding logic to query_conn caller thread and pass…
auxten Dec 30, 2024
b860cf0
Add global lock for chdb.query
auxten Jan 3, 2025
3f1e5f5
Fix __exit__ for session.Session
auxten Jan 3, 2025
485cde2
Add stealQueryOutputVector
auxten Jan 3, 2025
d814283
Enhance query processing with improved synchronization and logging fo…
auxten Jan 3, 2025
598b6e8
Enable test_insert_vector
auxten Jan 3, 2025
5d1a786
Fix UT for refactored Session and chdb.query
auxten Jan 3, 2025
95ade3a
Remove a test print
auxten Jan 3, 2025
6a227f2
Lower log level
auxten Jan 3, 2025
b348e1c
For debug
auxten Jan 3, 2025
4b4f152
Fix pr-ci pipeline
auxten Jan 3, 2025
ad9b30f
Refactor query_conn
auxten Jan 3, 2025
eebaf38
Fix pr-ci
auxten Jan 3, 2025
20e2185
Fix flake8
auxten Jan 3, 2025
57b1656
Disable for now import chdb; res = chdb.query('select version()', 'De…
auxten Jan 3, 2025
86692e8
Fix format
auxten Jan 3, 2025
ebcf104
Disable smoke more for now
auxten Jan 3, 2025
3ebb5ed
Disable more smoke
auxten Jan 3, 2025
b5c1b09
Disable python3 -c
auxten Jan 3, 2025
3ad8409
Better exception handling in connect_chdb
auxten Jan 3, 2025
c7bd95a
Re-enable smoke tests
auxten Jan 3, 2025
9bbfd3a
Fix test_parallel
auxten Jan 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix pr-ci pipeline
  • Loading branch information
auxten committed Jan 3, 2025
commit 4b4f152d9df8591a0ab216718800e314b4ef6f97
2 changes: 1 addition & 1 deletion .github/workflows/pr_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
env:
PYTHON_VERSIONS: "3.11"

runs-on: self-hosted
runs-on: gh-64c
steps:
- name: Check for chdb directory
run: |
Expand Down