michael-s-molina commented on code in PR #24796:
URL: https://github.com/apache/superset/pull/24796#discussion_r1276199186
##########
tests/integration_tests/databases/api_tests.py:
##########
@@ -686,6 +686,21 @@ def
test_if_ssh_tunneling_flag_is_not_active_it_raises_new_exception(
# the DB should not be created
assert model is None
+ def test_get_table_details_with_slash_in_name(self):
+ table_name = "table_with/slash"
+ database = get_example_database()
+ if database.backend in ("mysql", "sqlite"):
Review Comment:
It seems
[MySQL](https://stackoverflow.com/questions/9801760/using-slash-in-mysql-database)
and
[SQLite](https://stackoverflow.com/questions/3694276/what-are-valid-table-names-in-sqlite)
support table names with slashes but you need to escape them.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]