Add support for mysql 'SHOW CREATE VIEW' statement (#536)

This commit is contained in:
Mike Roberts 2022-07-18 11:10:09 +01:00 committed by GitHub
parent dea7666086
commit 93e16e9864
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View file

@ -128,6 +128,7 @@ fn parse_show_create() {
ShowCreateObject::Event,
ShowCreateObject::Function,
ShowCreateObject::Procedure,
ShowCreateObject::View,
] {
assert_eq!(
mysql_and_generic().verified_stmt(format!("SHOW CREATE {} myident", obj_type).as_str()),