Upgrade*.java should not call long count = rs.getLong(1) but instead should call int count = rs.getInt(1)

Description

long count = rs.getLong(1);

At SQL Server it fails with:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Long

int count = rs.getInt(1);

We should update SourceFormatter to warn about this in the future in *.java.

Activity

Show:

Michael Saechang July 26, 2012 at 9:45 AM

Committed on:
Portal 6.1.x CE GIT ID: 4b462f9647be9531e249388c72b748f49e989ed4.
Portal 6.2.x GIT ID: bc599a521a9e90bdbd5d8b218cd9e25ec67a1726.

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Branch Version/s

6.1.x
6.0.x

Backported to Branch

Committed

Components

Priority

Zendesk Support

Created June 29, 2012 at 3:37 PM
Updated June 24, 2023 at 3:47 PM
Resolved July 2, 2012 at 1:52 PM