Message-ID: From: "mjschwaiger (@mjschwaiger)" To: "pgjdbc/pgjdbc" Date: Mon, 19 Jan 2026 08:27:08 +0000 Subject: Re: [pgjdbc/pgjdbc] issue #3910: Connection parameter cleanupSavepoints=true does not work with oid/blob column In-Reply-To: References: List-Id: X-GitHub-Author-Login: mjschwaiger X-GitHub-Comment-Id: 3767062558 X-GitHub-Comment-Type: issue_comment X-GitHub-Issue: 3910 X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-Type: comment X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/issues/3910#issuecomment-3767062558 Content-Type: text/plain; charset=utf-8 @vlsi Thank you for your prompt response and for resolving this issue. Tested with following Gradle configuration successfully. Looks good to me! But still wondering that no one else encountered this issue, or if there are others who have experienced something similar. Any timeline when 42.7.10 is going to be released? `settings.gradle` ``` dependencyResolutionManagement { repositories { maven { name = 'sonatype-snapshots' url = 'https://central.sonatype.com/repository/maven-snapshots' mavenContent { snapshotsOnly() } } } } ``` `build.gradle` ``` dependencies { implementation 'org.postgresql:postgresql:42.7.10-SNAPSHOT' } ``` Results of executing TestPgCleanupSavepointsWithBlob.main(): ``` Connecting to database [jdbc:postgresql://localhost:5432/test] ... Connected successfully Set autocommit=false Drop table (start) ... Create table ... Insert record ... Executing query ... [id] -> 1 [doc] -> contentArray.length=5 Drop table (end) ... - - - - - - - - - - - - - Connecting to database [jdbc:postgresql://localhost:5432/test?autosave=always&cleanupSavepoints=false] ... Connected successfully Set autocommit=false Drop table (start) ... Create table ... Insert record ... Executing query ... [id] -> 1 [doc] -> contentArray.length=5 Drop table (end) ... - - - - - - - - - - - - - Connecting to database [jdbc:postgresql://localhost:5432/test?autosave=always&cleanupSavepoints=true] ... Connected successfully Set autocommit=false Insert record ... - - - - - - - - - - - - - Connecting to database [jdbc:postgresql://localhost:5432/test?autosave=always&cleanupSavepoints=true] ... Connected successfully Set autocommit=false Executing query ... [id] -> 1 [doc] -> contentArray.length=5 [id] -> 1 [doc] -> contentArray.length=5 - - - - - - - - - - - - - ```