mirror of
https://github.com/postgres/postgres.git
synced 2025-05-29 00:03:09 -04:00
doc: Add missing parentheses
From: Alexander Law <exclusion@gmail.com>
This commit is contained in:
parent
c313687673
commit
d2de44c2ce
@ -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);
|
|||||||
</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);
|
|||||||
</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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user