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
d2de44c2
Commit
d2de44c2
authored
Apr 15, 2016
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: Add missing parentheses
From: Alexander Law <exclusion@gmail.com>
parent
c3136876
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
doc/src/sgml/ecpg.sgml
doc/src/sgml/ecpg.sgml
+3
-3
No files found.
doc/src/sgml/ecpg.sgml
View file @
d2de44c2
...
@@ -8559,7 +8559,7 @@ int dectolong(decimal *np, long *lngp);
...
@@ -8559,7 +8559,7 @@ int dectolong(decimal *np, long *lngp);
int rdatestr(date d, char *str);
int rdatestr(date d, char *str);
</synopsis>
</synopsis>
The function receives two arguments, the first one is the date to
The function receives two arguments, the first one is the date to
convert (<literal>d</> and the second one is a pointer to the target
convert (<literal>d</>
)
and the second one is a pointer to the target
string. The output format is always <literal>yyyy-mm-dd</>, so you need
string. The output format is always <literal>yyyy-mm-dd</>, so you need
to allocate at least 11 bytes (including the zero-byte terminator) for the
to allocate at least 11 bytes (including the zero-byte terminator) for the
string.
string.
...
@@ -8912,7 +8912,7 @@ int dttoasc(timestamp *ts, char *output);
...
@@ -8912,7 +8912,7 @@ int dttoasc(timestamp *ts, char *output);
</synopsis>
</synopsis>
The function receives a pointer to the timestamp variable to convert
The function receives a pointer to the timestamp variable to convert
(<literal>ts</>) and the string that should hold the result of the
(<literal>ts</>) and the string that should hold the result of the
operation <literal>output</>). It converts <literal>ts</> to its
operation
(
<literal>output</>). It converts <literal>ts</> to its
textual representation according to the SQL standard, which is
textual representation according to the SQL standard, which is
be <literal>YYYY-MM-DD HH:MM:SS</literal>.
be <literal>YYYY-MM-DD HH:MM:SS</literal>.
</para>
</para>
...
@@ -8959,7 +8959,7 @@ int intoasc(interval *i, char *str);
...
@@ -8959,7 +8959,7 @@ int intoasc(interval *i, char *str);
</synopsis>
</synopsis>
The function receives a pointer to the interval variable to convert
The function receives a pointer to the interval variable to convert
(<literal>i</>) and the string that should hold the result of the
(<literal>i</>) and the string that should hold the result of the
operation <literal>str</>). It converts <literal>i</> to its
operation
(
<literal>str</>). It converts <literal>i</> to its
textual representation according to the SQL standard, which is
textual representation according to the SQL standard, which is
be <literal>YYYY-MM-DD HH:MM:SS</literal>.
be <literal>YYYY-MM-DD HH:MM:SS</literal>.
</para>
</para>
...
...
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