diff options
| author | Adam Johnson <me@adamj.eu> | 2021-12-10 09:13:09 +0000 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-12-22 11:46:18 +0100 |
| commit | a8fa3e5cd77416b9e4a5b28b216fb3e19609a37d (patch) | |
| tree | a6cb44a12f0bbf7bc4796c82f8ae42791363ec36 /tests/db_functions/text/test_pad.py | |
| parent | 78f062f63e7dea09c219fd1310d43950817f4c78 (diff) | |
Refs #33355 -- Added missing tests for database functions and expression on null values.
Diffstat (limited to 'tests/db_functions/text/test_pad.py')
| -rw-r--r-- | tests/db_functions/text/test_pad.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/db_functions/text/test_pad.py b/tests/db_functions/text/test_pad.py index 17c33a30d8..fbe82c166e 100644 --- a/tests/db_functions/text/test_pad.py +++ b/tests/db_functions/text/test_pad.py @@ -25,6 +25,8 @@ class PadTests(TestCase): (RPad('name', 0), ''), (LPad('name', None), none_value), (RPad('name', None), none_value), + (LPad(Value(None), 1), none_value), + (RPad(Value(None), 1), none_value), (LPad('goes_by', 1), none_value), (RPad('goes_by', 1), none_value), ) |
