Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(mysql): filter sys table from gui #643

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog (Pypi package)

## [3.17.1] 2022-07-27
## [3.17.3] 2022-07-28

### Changed

- Fix: Mysql, remove sys table from available dbs listing

## [3.17.2] 2022-07-27

### Changed

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ multi_line_output = 3

[tool.poetry]
name = "toucan-connectors"
version = "3.17.2"
version = "3.17.3"
description = "Toucan Toco Connectors"
authors = ["Toucan Toco <[email protected]>"]
license = "BSD"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=toucantoco

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=Toucan Connectors
sonar.projectVersion=3.17.2
sonar.projectVersion=3.17.3

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=./toucan_connectors
Expand Down
2 changes: 1 addition & 1 deletion toucan_connectors/mysql/mysql_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _list_db_names(self) -> list[str]:
return [
db_name
for (db_name,) in res
if db_name not in ('information_schema', 'mysql', 'performance_schema')
if db_name not in ('information_schema', 'mysql', 'performance_schema', 'sys')
]

def _get_project_structure(self) -> list[TableInfo]:
Expand Down