pingw33n

Results 6 issues of pingw33n

**V version:** 0.3.0 b08690d **OS:** macOS 12.4 **What did you do?** ```v module main fn main() { println(int(1e+100)) a := 1000 println(1

Bug

JDBI version: 3.32.0 Postgres driver: `org.postgresql:postgresql:42.5.0` Reproducer: ```java @Testcontainers public class JdbiBugTest { @Container PostgreSQLContainer postgres = new PostgreSQLContainer(DockerImageName.parse("postgres:12-alpine")); @Test void bug() { Jdbi.create(postgres.getJdbcUrl(), postgres.getUsername(), postgres.getPassword()) .registerArrayType(byte[].class, "bytea") .withHandle(h ->...

on hold
help wanted
driver
Not a JDBI Bug

Postgres driver: org.postgresql:postgresql:42.5.0 Reproducer: ```java @Testcontainers public class PgTest { @Container PostgreSQLContainer postgres = new PostgreSQLContainer(DockerImageName.parse("postgres:12-alpine")); @Test void test() throws Exception { try (var c = DriverManager.getConnection(postgres.getJdbcUrl(), postgres.getUsername(), postgres.getPassword())) {...