Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf0cd764

Browse files
committed
Add #include code to prevent multiple inclusion.
1 parent97c3fcd commitf0cd764

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

‎contrib/btree_gist/btree_gist.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef__BTREE_GIST_H__
2+
#define__BTREE_GIST_H__
3+
14
#include"postgres.h"
25
#include"access/gist.h"
36
#include"access/itup.h"
@@ -37,3 +40,5 @@ enum gbtree_type
3740
Datumgbtreekey_in(PG_FUNCTION_ARGS);
3841

3942
Datumgbtreekey_out(PG_FUNCTION_ARGS);
43+
44+
#endif

‎contrib/btree_gist/btree_utils_num.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef__BTREE_UTILS_NUM_H__
2+
#define__BTREE_UTILS_NUM_H__
3+
14
#include"btree_gist.h"
25

36
typedefcharGBT_NUMKEY;
@@ -101,3 +104,5 @@ extern bool gbt_num_same(const GBT_NUMKEY * a, const GBT_NUMKEY * b,
101104

102105
externvoidgbt_num_bin_union(Datum*u,GBT_NUMKEY*e,
103106
constgbtree_ninfo*tinfo);
107+
108+
#endif

‎contrib/btree_gist/btree_utils_var.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#ifndef__BTREE_UTILS_VAR_H__
2+
#define__BTREE_UTILS_VAR_H__
3+
14
#include"mb/pg_wchar.h"
25

36
#include"btree_gist.h"
@@ -70,3 +73,5 @@ extern GIST_SPLITVEC *gbt_var_picksplit(const GistEntryVector *entryvec, GIST_SP
7073
constgbtree_vinfo*tinfo);
7174
externvoidgbt_var_bin_union(Datum*u,GBT_VARKEY*e,
7275
constgbtree_vinfo*tinfo);
76+
77+
#endif

‎doc/src/sgml/ref/grant.sgml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.55 2006/07/1016:48:46 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.56 2006/07/1021:03:58 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -272,9 +272,10 @@ GRANT <replaceable class="PARAMETER">role</replaceable> [, ...]
272272
of privilege that is applicable to procedural languages.
273273
</para>
274274
<para>
275-
For schemas, allows the grantee to find objects contained in the
276-
specified schema (assuming that the objects' own privilege requirements
277-
are also met).
275+
For schemas, allows access to objects contained in the specified
276+
schema (assuming that the objects' own privilege requirements are
277+
also met). Essentially this allows the grantee to <quote>look up</>
278+
objects within the schema.
278279
</para>
279280
<para>
280281
For sequences, this privilege allows the use of the

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp