Skip to content

Commit

Permalink
fixed integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
subkanthi committed Feb 7, 2025
1 parent 31a4363 commit ce16a4e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void testCreateTable() throws Exception {
* 2106-02-07 00:28:15.0
*/
// Validate temporal_types_DATETIME data.
ResultSet dateTimeResult = writer.executeQueryWithResultSet("select * from temporal_types_DATETIME");
ResultSet dateTimeResult = writer.executeQueryWithResultSet("select * from employees.temporal_types_DATETIME");

boolean dateTimeResultChecked = false;
while(dateTimeResult.next()) {
Expand All @@ -130,7 +130,7 @@ public void testCreateTable() throws Exception {
Assert.assertTrue(dateTimeResultChecked);

// DATETIME1
ResultSet dateTimeResult1 = writer.executeQueryWithResultSet("select * from temporal_types_DATETIME1");
ResultSet dateTimeResult1 = writer.executeQueryWithResultSet("select * from employees.temporal_types_DATETIME1");
while(dateTimeResult1.next()) {
System.out.println("DATE TIME 1");
System.out.println(dateTimeResult1.getTimestamp("Minimum_Value").toString());
Expand All @@ -143,7 +143,7 @@ public void testCreateTable() throws Exception {
}

// DATETIME2
ResultSet dateTimeResult2 = writer.executeQueryWithResultSet("select * from temporal_types_DATETIME2");
ResultSet dateTimeResult2 = writer.executeQueryWithResultSet("select * from employees.temporal_types_DATETIME2");
while(dateTimeResult2.next()) {
System.out.println("DATE TIME 2");
System.out.println(dateTimeResult2.getTimestamp("Minimum_Value").toString());
Expand Down

0 comments on commit ce16a4e

Please sign in to comment.