Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
da75e67
x (#301)
sunng87 Mar 2, 2026
e957839
chore: Release
sunng87 Mar 2, 2026
e27f450
chore: Release
sunng87 Mar 2, 2026
8b3acd5
chore(deps): bump tokio from 1.49.0 to 1.50.0 (#302)
dependabot[bot] Mar 4, 2026
47bdf5e
Avoid creating query string when not needed (#303)
mjgarton Mar 9, 2026
f7b01b8
chore(deps): bump datafusion from 52.2.0 to 52.3.0 (#306)
dependabot[bot] Mar 13, 2026
a4758dd
Improve pg_catalog type mapping (#305)
mjgarton Mar 13, 2026
179e01f
chore(deps): bump pgwire from 0.38.0 to 0.38.1 (#307)
dependabot[bot] Mar 18, 2026
23615fc
chore(deps): bump datafusion from 52.3.0 to 52.4.0 (#308)
dependabot[bot] Mar 23, 2026
fbca72d
chore(deps): bump env_logger from 0.11.9 to 0.11.10 (#310)
dependabot[bot] Mar 24, 2026
83d9fdf
fix: use int2 for arrow 8-bit int (#311)
sunng87 Mar 24, 2026
58ca297
chore(deps): bump pgwire from 0.38.1 to 0.38.2 (#314)
dependabot[bot] Mar 26, 2026
9006d82
chore: update readme
sunng87 Mar 29, 2026
00b4f48
chore(deps): bump rust_decimal from 1.40.0 to 1.41.0 (#316)
dependabot[bot] Mar 30, 2026
a301e5e
chore(deps): bump postgres-types from 0.2.12 to 0.2.13 (#319)
dependabot[bot] Mar 31, 2026
764c147
Upgrade to datafusion 53 (#321)
mjgarton Apr 1, 2026
a958f1f
chore: Release
sunng87 Apr 1, 2026
9442098
chore(deps): bump tokio from 1.50.0 to 1.51.0 (#322)
dependabot[bot] Apr 6, 2026
c2459b7
fix: use text format as default in describe statement (#323)
sunng87 Apr 8, 2026
60b3dac
chore(deps): bump tokio from 1.51.0 to 1.51.1 (#324)
dependabot[bot] Apr 9, 2026
4ba7615
chore(deps): bump pgwire from 0.38.2 to 0.38.3 (#325)
dependabot[bot] Apr 9, 2026
d3de9f4
feat: improve query parameter parsing for datafusion (#326)
sunng87 Apr 13, 2026
764be81
chore(deps): bump tokio from 1.51.1 to 1.52.0 (#328)
dependabot[bot] Apr 15, 2026
fe83376
fix: only return schema for query (#329)
sunng87 Apr 15, 2026
f27a050
fix: lint for rust 1.95 (#334)
sunng87 Apr 21, 2026
66a3242
chore(deps): bump datafusion from 53.0.0 to 53.1.0 (#332)
dependabot[bot] Apr 21, 2026
466df24
chore(deps): bump tokio from 1.52.0 to 1.52.1 (#331)
dependabot[bot] Apr 21, 2026
1b9c12c
feat: update pgwire to 0.39 (#330)
sunng87 Apr 22, 2026
789dc23
refactor: update for rust 2024 edition (#335)
sunng87 Apr 23, 2026
77af31f
chore(deps): bump rustls-pki-types from 1.14.0 to 1.14.1 (#336)
dependabot[bot] Apr 27, 2026
b14ca2f
chore(deps): bump arrow-schema from 58.1.0 to 58.2.0 (#337)
dependabot[bot] May 4, 2026
f86dae3
chore(deps): bump tokio from 1.52.1 to 1.52.2 (#340)
dependabot[bot] May 7, 2026
fc02f8e
chore(deps): bump rust_decimal from 1.41.0 to 1.42.0 (#341)
dependabot[bot] May 7, 2026
6aaf9b3
chore(deps): bump tokio from 1.52.2 to 1.52.3 (#343)
dependabot[bot] May 11, 2026
646dde3
feat: cursor and fetch support (#339)
sunng87 May 11, 2026
a5a1780
chore(deps): bump arrow-schema from 58.2.0 to 58.3.0 (#344)
dependabot[bot] May 12, 2026
e384928
flake.lock: Update
sunng87 May 17, 2026
84c43e9
chore: Release
sunng87 May 25, 2026
f6f5f21
fix(pg-catalog): restrict unqualified pg table rewrite (#364)
discord9 Jun 25, 2026
b0269e4
chore: Release
sunng87 Jun 25, 2026
911bf47
feat: add support for select current_catalog, select current_schema
sunng87 Jul 4, 2026
b1f5242
chore: Release
sunng87 Jul 4, 2026
f1bfdcb
feat: support DataFusion 54
discord9 Jul 16, 2026
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
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,12 @@ jobs:
needs: [test]
steps:
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: |
pip install psycopg
- uses: cachix/install-nix-action@v31
- name: Initialize podman
run: nix develop --command podman info >/dev/null 2>&1 || true
- run: |
cd tests-integration
./test.sh
nix develop --command bash test.sh

msrv:
name: MSRV
Expand Down
Loading