• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

gluesql / gluesql / 17708417516
99%

Build:
DEFAULT BRANCH: main
Ran 14 Sep 2025 08:18AM UTC
Jobs 1
Files 313
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

14 Sep 2025 08:03AM UTC coverage: 97.919% (+0.06%) from 97.857%
17708417516

push

github

web-flow
Implement proc macro for row conversion and add payload helpers (minimal SELECT→struct) (#1779)

Adds a new proc-macro crate (gluesql-macros) and re-exports its derive; implements a core row-conversion module with errors, traits, and result extensions; integrates RowConversionError into core Error; updates workspace manifests and CI to include and test the macros; and adds many compile-fail and runtime tests exercising conversions.

e.g.
```rust
use gluesql::FromGlueRow;
use gluesql::core::row_conversion::SelectResultExt;

#[derive(Debug, PartialEq, FromGlueRow)]
struct User {
    id: i64,
    name: String,
    email: Option<String>,
}

// Many results
let users: Vec<User> = glue
    .execute("SELECT id, name, email FROM users")
    .await?
    .rows_as::<User>()?;

// One result
let user: User = glue
    .execute("SELECT id, name, email FROM users WHERE id = 1")
    .await?
    .one_as::<User>()?;
```

1179 of 1180 new or added lines in 19 files covered. (99.92%)

37699 of 38500 relevant lines covered (97.92%)

72485.78 hits per line

Uncovered Changes

Lines Coverage ∆ File
1
99.74
macros/src/lib.rs
Jobs
ID Job ID Ran Files Coverage
1 17708417516.1 14 Sep 2025 08:18AM UTC 313
97.92
GitHub Action Run
Source Files on build 17708417516
  • Tree
  • List 313
  • Changed 2
  • Source Changed 0
  • Coverage Changed 2
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • bbb8f5d5 on github
  • Prev Build on main (#17708348462)
  • Next Build on main (#17708668993)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc