@@ -3113,8 +3113,8 @@ substitute will be created.
3113
3113
3114
3114
This function ensures that the table marked as "ancestor" is not a table from
3115
3115
which "descendent" inherits --- that there is no inheritance chain between the
3116
- two tables. If the optional depth argument is passed, the test enbsures only
3117
- that the two tablesa are not related at that distance; they still might be an
3116
+ two tables. If the optional depth argument is passed, the test ensures only
3117
+ that the two tables are not related at that distance; they still might be an
3118
3118
inheritance relationship between them. If the `:description` is omitted, a
3119
3119
reasonable substitute will be created.
3120
3120
@@ -3574,7 +3574,7 @@ incorrect, the diagnostics will look more like this:
3574
3574
# want: "idx_baz" ON public.sometab(lower(lname))
3575
3575
3576
3576
Note that unlike most other column parameter arguments in pgTAP, mixed-case
3577
- column mames crated with double-quotes must be double-quoted when passed
3577
+ column names crated with double-quotes must be double-quoted when passed
3578
3578
to `has_index()`, like so:
3579
3579
3580
3580
SELECT has_index(
@@ -4602,7 +4602,7 @@ used to be represented as functions:
4602
4602
SELECT col_default_is( 'widgets', 'created_by', '"current_user"()' );
4603
4603
4604
4604
As of PostgreSQL 10, they comply with the SQL spec to appear in uppercase
4605
- and without trailining parentheses:
4605
+ and without trailing parentheses:
4606
4606
4607
4607
SELECT col_default_is( 'widgets', 'created_by', 'CURRENT_USER' );
4608
4608
@@ -5304,7 +5304,7 @@ doesn't require an index name and does require one or more column names or
5304
5304
expressions in the defined for the index.
5305
5305
5306
5306
Note that unlike most other column parameter arguments in pgTAP, mixed-case
5307
- column mames crated with double-quotes must be double-quoted when passed
5307
+ column names crated with double-quotes must be double-quoted when passed
5308
5308
to `is_indexed()`, like so:
5309
5309
5310
5310
SELECT is_indexed( 'widgets', '"Name"' );
@@ -5533,7 +5533,7 @@ But then you check with `has_function()` first, right?
5533
5533
: Schema in which to find the function.
5534
5534
5535
5535
`:function`
5536
- : Function or proceudure name.
5536
+ : Function or procedure name.
5537
5537
5538
5538
`:args`
5539
5539
: Array of data types for the function arguments.
@@ -5578,7 +5578,7 @@ But then you check with `has_function()` first, right?
5578
5578
: Schema in which to find the function.
5579
5579
5580
5580
`:function`
5581
- : Function or proceure name.
5581
+ : Function or procedure name.
5582
5582
5583
5583
`:args`
5584
5584
: Array of data types for the function arguments.
@@ -7180,7 +7180,7 @@ created. Examples:
7180
7180
7181
7181
SELECT database_privs_are(
7182
7182
'flipr', 'fred', ARRAY['CONNECT', 'TEMPORARY'],
7183
- 'Fred should be granted CONNECT and TERMPORARY on db "flipr"'
7183
+ 'Fred should be granted CONNECT and TEMPORARY on db "flipr"'
7184
7184
);
7185
7185
SELECT database_privs_are( 'dept_corrections', ARRAY['CREATE'] );
7186
7186
0 commit comments