diff options
| author | Peter Eisentraut | 2021-08-06 20:11:02 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2021-08-06 20:11:28 +0000 |
| commit | ba4eb86ceff4eded5920d36ef82a2096db7ad0c0 (patch) | |
| tree | db5b63c05e4254530e79260bebc79c209e0a90d6 /src/test | |
| parent | 05e60aece33e84960ef566e4735b2d93c2d791c8 (diff) | |
Add missing message punctuation
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/regress/expected/multirangetypes.out | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/multirangetypes.out b/src/test/regress/expected/multirangetypes.out index 7f689ad41b4..f5f089741c1 100644 --- a/src/test/regress/expected/multirangetypes.out +++ b/src/test/regress/expected/multirangetypes.out @@ -2929,13 +2929,13 @@ create type intmultirange as (x int, y int); create type intrange as range(subtype=int); -- should fail ERROR: type "intmultirange" already exists DETAIL: Failed while creating a multirange type for type "intrange". -HINT: You can manually specify a multirange type name using the "multirange_type_name" attribute +HINT: You can manually specify a multirange type name using the "multirange_type_name" attribute. drop type intmultirange; create type intr_multirange as (x int, y int); create type intr as range(subtype=int); -- should fail ERROR: type "intr_multirange" already exists DETAIL: Failed while creating a multirange type for type "intr". -HINT: You can manually specify a multirange type name using the "multirange_type_name" attribute +HINT: You can manually specify a multirange type name using the "multirange_type_name" attribute. drop type intr_multirange; -- -- Test multiple multirange types over the same subtype and manual naming of |
