pingw33n
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
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 ->...
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())) {...
### Version 4.5.9 ### Steps to reproduce Kotlin code (the issue isn't Kotlin-specific): ```kotlin fun main() { val vertx = Vertx.vertx() val server = vertx.createHttpServer() server.requestHandler { request -> request.response().end("Hello...
On an idle Citus cluster `citus_move_shard_placement()` to move shards from one worker to another (neither is the coordinator) peaks at 70 GB memory usage on the coordinator. In fact, we...