Skip to content

Commit

Permalink
added drop table
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-shchetinin committed Aug 6, 2024
1 parent d48a8d0 commit af0be18
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/sessions_it/sessions_it.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ Y_UNIT_TEST_SUITE(YdbSdkSessions) {
}

UNIT_ASSERT_VALUES_EQUAL(client.GetActiveSessionCount(), 0);
auto session = client.GetSession().ExtractValueSync().GetSession();
session.ExecuteSchemeQuery(R"___(
DROP TABLE `/local/t`;
)___").ExtractValueSync();
driver.Stop(true);
}

Expand Down

0 comments on commit af0be18

Please sign in to comment.