File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed
Filter options
Expand file tree Collapse file tree 6 files changed +14
-14
lines changed
Original file line number Diff line number Diff line change @@ -1309,7 +1309,7 @@ testdb=>
1309
1309
</term>
1310
1310
<listitem>
1311
1311
<para>
1312
- Lists procedures associated with operator families
1312
+ Lists functions associated with operator families
1313
1313
(<xref linkend="catalog-pg-amproc"/>).
1314
1314
If <replaceable class="parameter">access-method-pattern</replaceable>
1315
1315
is specified, only members of operator families associated with access
Original file line number Diff line number Diff line change @@ -747,7 +747,7 @@ exec_command_d(PsqlScanState scan_state, bool active_branch, const char *cmd)
747
747
success = listOpFamilyOperators (pattern , pattern2 , show_verbose );
748
748
break ;
749
749
case 'p' :
750
- success = listOpFamilyProcedures (pattern , pattern2 );
750
+ success = listOpFamilyFunctions (pattern , pattern2 );
751
751
break ;
752
752
default :
753
753
status = PSQL_CMD_UNKNOWN ;
Original file line number Diff line number Diff line change @@ -6310,14 +6310,14 @@ listOpFamilyOperators(const char *access_method_pattern,
6310
6310
6311
6311
/*
6312
6312
* \dAp
6313
- * Lists procedures of operator families
6313
+ * Lists support functions of operator families
6314
6314
*
6315
6315
* Takes an optional regexps to filter by index access method and operator
6316
6316
* family.
6317
6317
*/
6318
6318
bool
6319
- listOpFamilyProcedures (const char * access_method_pattern ,
6320
- const char * family_pattern )
6319
+ listOpFamilyFunctions (const char * access_method_pattern ,
6320
+ const char * family_pattern )
6321
6321
{
6322
6322
PQExpBufferData buf ;
6323
6323
PGresult * res ;
@@ -6344,7 +6344,7 @@ listOpFamilyProcedures(const char *access_method_pattern,
6344
6344
gettext_noop ("Left arg type" ),
6345
6345
gettext_noop ("Right arg type" ),
6346
6346
gettext_noop ("Number" ),
6347
- gettext_noop ("Proc name " ));
6347
+ gettext_noop ("Function " ));
6348
6348
6349
6349
appendPQExpBuffer (& buf ,
6350
6350
"FROM pg_catalog.pg_amproc ap\n"
@@ -6371,7 +6371,7 @@ listOpFamilyProcedures(const char *access_method_pattern,
6371
6371
return false;
6372
6372
6373
6373
myopt .nullPrint = NULL ;
6374
- myopt .title = _ ("List of procedures of operator families" );
6374
+ myopt .title = _ ("List of support functions of operator families" );
6375
6375
myopt .translate_header = true;
6376
6376
myopt .translate_columns = translate_columns ;
6377
6377
myopt .n_translate_columns = lengthof (translate_columns );
Original file line number Diff line number Diff line change @@ -129,8 +129,8 @@ extern bool listOpFamilyOperators(const char *accessMethod_pattern,
129
129
const char * family_pattern , bool verbose );
130
130
131
131
/* \dAp */
132
- extern bool listOpFamilyProcedures (const char * access_method_pattern ,
133
- const char * family_pattern );
132
+ extern bool listOpFamilyFunctions (const char * access_method_pattern ,
133
+ const char * family_pattern );
134
134
135
135
136
136
#endif /* DESCRIBE_H */
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ slashUsage(unsigned short int pager)
231
231
fprintf (output , _ (" \\dAc[+] [AMPTRN [TYPEPTRN]] list operator classes\n" ));
232
232
fprintf (output , _ (" \\dAf[+] [AMPTRN [TYPEPTRN]] list operator families\n" ));
233
233
fprintf (output , _ (" \\dAo[+] [AMPTRN [OPFPTRN]] list operators of operator families\n" ));
234
- fprintf (output , _ (" \\dAp [AMPTRN [OPFPTRN]] list procedures of operator families\n" ));
234
+ fprintf (output , _ (" \\dAp [AMPTRN [OPFPTRN]] list support functions of operator families\n" ));
235
235
fprintf (output , _ (" \\db[+] [PATTERN] list tablespaces\n" ));
236
236
fprintf (output , _ (" \\dc[S+] [PATTERN] list conversions\n" ));
237
237
fprintf (output , _ (" \\dC[+] [PATTERN] list casts\n" ));
Original file line number Diff line number Diff line change @@ -4988,8 +4988,8 @@ List of access methods
4988
4988
(3 rows)
4989
4989
4990
4990
\dAp btree float_ops
4991
- List of procedures of operator families
4992
- AM | Operator family | Left arg type | Right arg type | Number | Proc name
4991
+ List of support functions of operator families
4992
+ AM | Operator family | Left arg type | Right arg type | Number | Function
4993
4993
-------+-----------------+------------------+------------------+--------+---------------------
4994
4994
btree | float_ops | double precision | double precision | 1 | btfloat8cmp
4995
4995
btree | float_ops | double precision | double precision | 2 | btfloat8sortsupport
@@ -5002,8 +5002,8 @@ List of access methods
5002
5002
(8 rows)
5003
5003
5004
5004
\dAp * pg_catalog.uuid_ops
5005
- List of procedures of operator families
5006
- AM | Operator family | Left arg type | Right arg type | Number | Proc name
5005
+ List of support functions of operator families
5006
+ AM | Operator family | Left arg type | Right arg type | Number | Function
5007
5007
-------+-----------------+---------------+----------------+--------+--------------------
5008
5008
btree | uuid_ops | uuid | uuid | 1 | uuid_cmp
5009
5009
btree | uuid_ops | uuid | uuid | 2 | uuid_sortsupport
You can’t perform that action at this time.
0 commit comments