Skip to content

Time-type changes break tests on future rustcs #1624

@workingjubilee

Description

@workingjubilee

Original PR:

Breaking rustc --versions:

  • rustc 1.78.0-beta.2 (277d06bc9 2024-03-23)
  • rustc 1.79.0-nightly (5f2c7d2bf 2024-03-25)

Broken command:

#!/bin/sh
for rustver in beta nightly; do
    rustup default "$rustver"
    cargo clean
    cargo install --path cargo-pgrx --locked
    for pgver in 12 13 14 15 16; do
        cargo test -p pgrx-tests \
            --features "pg$pgver" --no-default-features \
            1>"$rustver-pg$pgver.stdout" 2>"$rustver-pg$pgver.stderr";
    done
done

Output differs between versions, not sure if on different commits yet, I found the discrepancy first on nightly but did the beta bisect first.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions