generated from ansible-collections/collection_template
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71abdd7
commit db43c34
Showing
5 changed files
with
98 additions
and
98 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
6 changes: 3 additions & 3 deletions
6
tests/integration/targets/test_mysql_info/files/users_privs_create_procedure.sql
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,7 +1,7 @@ | ||
DELIMITER // | ||
DROP PROCEDURE IF EXISTS users_privs_db.get_all_items; | ||
CREATE PROCEDURE users_privs_db.get_all_items() | ||
DROP PROCEDURE IF EXISTS user_accounts_db.get_all_items; | ||
CREATE PROCEDURE user_accounts_db.get_all_items() | ||
BEGIN | ||
SELECT * from users_privs_db.t1; | ||
SELECT * from user_accounts_db.t1; | ||
END // | ||
DELIMITER ; |
Oops, something went wrong.