Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 4 additions & 0 deletions src/command_modules/azure-cli-rdbms/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.3.3
+++++
* Fixed broken mysql db create example

0.3.2
+++++
* Add support for MariaDB service
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ def add_helps(command_group, server_type):
short-summary: Create a {0} database.
examples:
- name: Create database 'testdb' in the server 'testsvr' with the default parameters.
text: az {1} db create -g testgroup -s testsvr -n testdb
text: az {1} db create -g testgroup -s testsvr -n testdb --admin-user myadmin --admin-password <server_admin_password> --sku-name GP_Gen4_2 --version 5.7
- name: Create database 'testdb' in server 'testsvr' with a given character set and collation rules.
text: az {1} db create -g testgroup -s testsvr -n testdb --charset {{valid_charset}} --collation {{valid_collation}}
text: az {1} db create -g testgroup -s testsvr -n testdb --charset {{valid_charset}} --collation {{valid_collation}} --admin-user myadmin --admin-password <server_admin_password> --sku-name GP_Gen4_2 --version 5.7

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "placeholder" syntax should be the same. Here you have {this} mixed with <this>. Use the double curly braces.

""".format(server_type, command_group)
helps['{} db delete'.format(command_group)] = """
type: command
Expand Down
2 changes: 1 addition & 1 deletion src/command_modules/azure-cli-rdbms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

VERSION = "0.3.2"
VERSION = "0.3.3"
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down