diff options
author | Thomas Munro <tmunro@postgresql.org> | 2021-01-05 14:00:16 +1300 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2021-01-05 14:00:16 +1300 |
commit | 034510c820cd75e0410332d92b4967ef9b844936 (patch) | |
tree | 5f9bc78c86e020e8a2e25a39046e43a9daba0b42 /contrib/postgres_fdw/shippable.c | |
parent | fe05b6b620066aec313c43b6b4d6c169d0a346f7 (diff) | |
download | postgresql-034510c820cd75e0410332d92b4967ef9b844936.tar.gz postgresql-034510c820cd75e0410332d92b4967ef9b844936.zip |
Replace remaining uses of "whitelist".
Instead describe the action that the list effects, or just use "list"
where the meaning is obvious from context.
Author: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Discussion: https://postgr.es/m/20200615182235.x7lch5n6kcjq4aue%40alap3.anarazel.de
Diffstat (limited to 'contrib/postgres_fdw/shippable.c')
-rw-r--r-- | contrib/postgres_fdw/shippable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/postgres_fdw/shippable.c b/contrib/postgres_fdw/shippable.c index c43e7e5ec59..b27f82e0155 100644 --- a/contrib/postgres_fdw/shippable.c +++ b/contrib/postgres_fdw/shippable.c @@ -7,7 +7,7 @@ * data types are shippable to a remote server for execution --- that is, * do they exist and have the same behavior remotely as they do locally? * Built-in objects are generally considered shippable. Other objects can - * be shipped if they are white-listed by the user. + * be shipped if they are declared as such by the user. * * Note: there are additional filter rules that prevent shipping mutable * functions or functions using nonportable collations. Those considerations @@ -110,7 +110,7 @@ InitializeShippableCache(void) * * Right now "shippability" is exclusively a function of whether the object * belongs to an extension declared by the user. In the future we could - * additionally have a whitelist of functions/operators declared one at a time. + * additionally have a list of functions/operators declared one at a time. */ static bool lookup_shippable(Oid objectId, Oid classId, PgFdwRelationInfo *fpinfo) |