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
aedc5ed5
Commit
aedc5ed5
authored
Sep 27, 2007
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in two comments. Spotted by Brendan Jurd
parent
ffda6747
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/include/fmgr.h
src/include/fmgr.h
+2
-2
src/include/postgres.h
src/include/postgres.h
+2
-2
No files found.
src/include/fmgr.h
View file @
aedc5ed5
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/fmgr.h,v 1.5
4 2007/09/22 04:41:1
9 tgl Exp $
* $PostgreSQL: pgsql/src/include/fmgr.h,v 1.5
5 2007/09/27 21:01:5
9 tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -158,7 +158,7 @@ extern void fmgr_info_copy(FmgrInfo *dstinfo, FmgrInfo *srcinfo,
...
@@ -158,7 +158,7 @@ extern void fmgr_info_copy(FmgrInfo *dstinfo, FmgrInfo *srcinfo,
* The resulting datum can be accessed using VARSIZE_ANY() and VARDATA_ANY()
* The resulting datum can be accessed using VARSIZE_ANY() and VARDATA_ANY()
* (beware of multiple evaluations in those macros!)
* (beware of multiple evaluations in those macros!)
*
*
* WARNING: It is only safe to use
PG_DETOAST_DATUM_UNPACKED
() and
* WARNING: It is only safe to use
pg_detoast_datum_packed
() and
* VARDATA_ANY() if you really don't care about the alignment. Either because
* VARDATA_ANY() if you really don't care about the alignment. Either because
* you're working with something like text where the alignment doesn't matter
* you're working with something like text where the alignment doesn't matter
* or because you're not going to access its constituent parts and just use
* or because you're not going to access its constituent parts and just use
...
...
src/include/postgres.h
View file @
aedc5ed5
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1995, Regents of the University of California
* Portions Copyright (c) 1995, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/postgres.h,v 1.8
2 2007/07/25 12:22:53 mha
Exp $
* $PostgreSQL: pgsql/src/include/postgres.h,v 1.8
3 2007/09/27 21:01:59 tgl
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -237,7 +237,7 @@ typedef struct
...
@@ -237,7 +237,7 @@ typedef struct
* code that specifically wants to work with still-toasted Datums.
* code that specifically wants to work with still-toasted Datums.
*
*
* WARNING: It is only safe to use VARDATA_ANY() -- typically with
* WARNING: It is only safe to use VARDATA_ANY() -- typically with
* PG_DETOAST_DATUM_
UN
PACKED() -- if you really don't care about the alignment.
* PG_DETOAST_DATUM_PACKED() -- if you really don't care about the alignment.
* Either because you're working with something like text where the alignment
* Either because you're working with something like text where the alignment
* doesn't matter or because you're not going to access its constituent parts
* doesn't matter or because you're not going to access its constituent parts
* and just use things like memcpy on it anyways.
* and just use things like memcpy on it anyways.
...
...
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