DBZ-8168 Fix checkstyle format error

This commit is contained in:
Chris Cranford 2024-08-26 23:57:32 -04:00
parent bdb86cd1db
commit e502fee0d7
No known key found for this signature in database
GPG Key ID: 8B8088D41181D04B

View File

@ -130,9 +130,7 @@ public void testToastColumnReselectedWhenJsonbValueIsUnavailable() throws Except
start(PostgresConnector.class, config);
waitForStreamingStarted();
final String json = "{\"key\": \""+ RandomStringUtils.randomAlphabetic(10000) +"\"}";
final String json = "{\"key\": \"" + RandomStringUtils.randomAlphabetic(10000) + "\"}";
TestHelper.execute("INSERT INTO s1.dbz8168_toast (id,data,data2) values (1,'" + json + "',1);",
"UPDATE s1.dbz8168_toast SET data2 = 2 where id = 1;");
@ -159,7 +157,6 @@ record = tableRecords.get(1);
assertColumnReselectedForUnavailableValue(logInterceptor, "s1.dbz8168_toast", "data");
}
@Test
@FixFor("DBZ-4321")
public void testToastColumnReselectedWhenValueIsUnavailable() throws Exception {