integrationtest/src/main/java/software/amazon/timestream/integrationtest/DatabaseMetaDataIntegrationTest.java [45:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Connection connection;

  @BeforeAll
  private static void setUp() {
    TableManager.createTable();
    TableManager.writeRecords();
  }

  @AfterAll
  private static void cleanUp() {
    TableManager.deleteTable();
  }

  @BeforeEach
  private void init() throws SQLException {
    final Properties p = new Properties();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



integrationtest/src/main/java/software/amazon/timestream/integrationtest/QueryExecutionIntegrationTest.java [39:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private Connection connection;

  @BeforeAll
  private static void setUp() {
    TableManager.createTable();
    TableManager.writeRecords();
  }

  @AfterAll
  private static void cleanUp() {
    TableManager.deleteTable();
  }

  @BeforeEach
  private void init() throws SQLException {
    final Properties p = new Properties();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



