Skip to content

Commit

Permalink
make SQL to be 8.3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Mar 8, 2018
1 parent 0687c32 commit 1e72481
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -70,7 +70,7 @@ public void setEncodingAscii() throws SQLException {

private void checkConnectionSanity() throws SQLException {
Statement st = con.createStatement();
ResultSet rs = st.executeQuery("select 'abc' x");
ResultSet rs = st.executeQuery("select 'abc' as x");
rs.next();
Assert.assertEquals("abc", rs.getString(1));
TestUtil.closeQuietly(rs);
Expand Down

0 comments on commit 1e72481

Please sign in to comment.