Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f0cd7647
Commit
f0cd7647
authored
Jul 10, 2006
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add #include code to prevent multiple inclusion.
parent
97c3fcd9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
4 deletions
+20
-4
contrib/btree_gist/btree_gist.h
contrib/btree_gist/btree_gist.h
+5
-0
contrib/btree_gist/btree_utils_num.h
contrib/btree_gist/btree_utils_num.h
+5
-0
contrib/btree_gist/btree_utils_var.h
contrib/btree_gist/btree_utils_var.h
+5
-0
doc/src/sgml/ref/grant.sgml
doc/src/sgml/ref/grant.sgml
+5
-4
No files found.
contrib/btree_gist/btree_gist.h
View file @
f0cd7647
#ifndef __BTREE_GIST_H__
#define __BTREE_GIST_H__
#include "postgres.h"
#include "postgres.h"
#include "access/gist.h"
#include "access/gist.h"
#include "access/itup.h"
#include "access/itup.h"
...
@@ -37,3 +40,5 @@ enum gbtree_type
...
@@ -37,3 +40,5 @@ enum gbtree_type
Datum
gbtreekey_in
(
PG_FUNCTION_ARGS
);
Datum
gbtreekey_in
(
PG_FUNCTION_ARGS
);
Datum
gbtreekey_out
(
PG_FUNCTION_ARGS
);
Datum
gbtreekey_out
(
PG_FUNCTION_ARGS
);
#endif
contrib/btree_gist/btree_utils_num.h
View file @
f0cd7647
#ifndef __BTREE_UTILS_NUM_H__
#define __BTREE_UTILS_NUM_H__
#include "btree_gist.h"
#include "btree_gist.h"
typedef
char
GBT_NUMKEY
;
typedef
char
GBT_NUMKEY
;
...
@@ -101,3 +104,5 @@ extern bool gbt_num_same(const GBT_NUMKEY * a, const GBT_NUMKEY * b,
...
@@ -101,3 +104,5 @@ extern bool gbt_num_same(const GBT_NUMKEY * a, const GBT_NUMKEY * b,
extern
void
gbt_num_bin_union
(
Datum
*
u
,
GBT_NUMKEY
*
e
,
extern
void
gbt_num_bin_union
(
Datum
*
u
,
GBT_NUMKEY
*
e
,
const
gbtree_ninfo
*
tinfo
);
const
gbtree_ninfo
*
tinfo
);
#endif
contrib/btree_gist/btree_utils_var.h
View file @
f0cd7647
#ifndef __BTREE_UTILS_VAR_H__
#define __BTREE_UTILS_VAR_H__
#include "mb/pg_wchar.h"
#include "mb/pg_wchar.h"
#include "btree_gist.h"
#include "btree_gist.h"
...
@@ -70,3 +73,5 @@ extern GIST_SPLITVEC *gbt_var_picksplit(const GistEntryVector *entryvec, GIST_SP
...
@@ -70,3 +73,5 @@ extern GIST_SPLITVEC *gbt_var_picksplit(const GistEntryVector *entryvec, GIST_SP
const
gbtree_vinfo
*
tinfo
);
const
gbtree_vinfo
*
tinfo
);
extern
void
gbt_var_bin_union
(
Datum
*
u
,
GBT_VARKEY
*
e
,
extern
void
gbt_var_bin_union
(
Datum
*
u
,
GBT_VARKEY
*
e
,
const
gbtree_vinfo
*
tinfo
);
const
gbtree_vinfo
*
tinfo
);
#endif
doc/src/sgml/ref/grant.sgml
View file @
f0cd7647
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.5
5 2006/07/10 16:48:46
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/grant.sgml,v 1.5
6 2006/07/10 21:03:58
momjian Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -272,9 +272,10 @@ GRANT <replaceable class="PARAMETER">role</replaceable> [, ...]
...
@@ -272,9 +272,10 @@ GRANT <replaceable class="PARAMETER">role</replaceable> [, ...]
of privilege that is applicable to procedural languages.
of privilege that is applicable to procedural languages.
</para>
</para>
<para>
<para>
For schemas, allows the grantee to find objects contained in the
For schemas, allows access to objects contained in the specified
specified schema (assuming that the objects' own privilege requirements
schema (assuming that the objects' own privilege requirements are
are also met).
also met). Essentially this allows the grantee to <quote>look up</>
objects within the schema.
</para>
</para>
<para>
<para>
For sequences, this privilege allows the use of the
For sequences, this privilege allows the use of the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment