Skip to content

Commit

Permalink
Attemting more debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
cstiborg committed Aug 27, 2024
1 parent 34b194a commit 03705a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/mysql/test-mysql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ TEST_CASE("Cross-schema metadata", "[mysql][cross-schema]")
st.execute();
while (st.fetch())
{
std::cout << "Got uppercase table" << std::endl;
std::cout << "Got uppercase table: " << ci.name << std::endl;
linux_mysql = true;
}

Expand All @@ -1006,7 +1006,7 @@ TEST_CASE("Cross-schema metadata", "[mysql][cross-schema]")
st.execute();
while (st.fetch())
{
std::cout << "Got lowercase table" << std::endl;
std::cout << "Got lowercase table: " << ci.name << std::endl;
windows_mysql = true;
}

Expand Down

0 comments on commit 03705a5

Please sign in to comment.