forked from lefred/mysqlshell-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When the functions are declared on a different file and included on the file that declares the class, the import must be done after the class declaration. Otherwise, the help information won't be correctly parsed.
- Loading branch information
1 parent
4a2ee4b
commit 1752a20
Showing
13 changed files
with
100 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# init.py | ||
# ------- | ||
|
||
|
||
from mysqlsh.plugin_manager import plugin, plugin_function | ||
from innodb import fragmented | ||
from innodb import progress | ||
from innodb import bufferpool | ||
from innodb import autoinc | ||
|
||
@plugin | ||
class innodb: | ||
""" | ||
InnoDB management and utilities. | ||
A collection of InnoDB management tools and related | ||
utilities that work on InnoDB Engine. | ||
""" | ||
utilities that work on InnoDB Engine. | ||
""" | ||
|
||
from innodb import fragmented | ||
from innodb import progress | ||
from innodb import bufferpool | ||
from innodb import autoinc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.