From e3e0c07e7fe104edb2664e39242ab09888bcfb1b Mon Sep 17 00:00:00 2001 From: kenjis Date: Mon, 25 Sep 2023 09:30:25 +0900 Subject: [PATCH] docs: add changelog --- tests/system/Commands/Database/ShowTableInfoTest.php | 12 ++++++++++++ user_guide_src/source/changelogs/v4.4.2.rst | 2 ++ 2 files changed, 14 insertions(+) diff --git a/tests/system/Commands/Database/ShowTableInfoTest.php b/tests/system/Commands/Database/ShowTableInfoTest.php index be52a71b2991..bd123cc4254d 100644 --- a/tests/system/Commands/Database/ShowTableInfoTest.php +++ b/tests/system/Commands/Database/ShowTableInfoTest.php @@ -183,4 +183,16 @@ public function testDbTableAllOptions(): void EOL; $this->assertStringContainsString($expected, $result); } + + public function testDbTableWithInvalidDbConfig(): void + { + $config = config(Database::class); + $config->tests['database'] = 'invalid database name'; + + command('db:table --show'); + + $result = $this->getNormalizedResult(); + + dd($result); + } } diff --git a/user_guide_src/source/changelogs/v4.4.2.rst b/user_guide_src/source/changelogs/v4.4.2.rst index 19f2a4f1782c..f529c76df49d 100644 --- a/user_guide_src/source/changelogs/v4.4.2.rst +++ b/user_guide_src/source/changelogs/v4.4.2.rst @@ -30,6 +30,8 @@ Deprecations Bugs Fixed ********** +- **Spark:** Fixed a bug that spark may not show Exceptions. + See the repo's `CHANGELOG.md `_ for a complete list of bugs fixed.