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
f00e5427
Commit
f00e5427
authored
Nov 05, 2007
by
D'Arcy J.M. Cain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove deprecation notice and add comment about safely restoring backups.
As per discussion on hackers.
parent
9a48d22e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
doc/src/sgml/datatype.sgml
doc/src/sgml/datatype.sgml
+9
-9
No files found.
doc/src/sgml/datatype.sgml
View file @
f00e5427
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.21
1 2007/10/21 20:04:37 tgl
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.21
2 2007/11/05 12:02:20 darcy
Exp $ -->
<chapter id="datatype">
<chapter id="datatype">
<title id="datatype-title">Data Types</title>
<title id="datatype-title">Data Types</title>
...
@@ -834,14 +834,6 @@ ALTER SEQUENCE <replaceable class="parameter">tablename</replaceable>_<replaceab
...
@@ -834,14 +834,6 @@ ALTER SEQUENCE <replaceable class="parameter">tablename</replaceable>_<replaceab
<sect1 id="datatype-money">
<sect1 id="datatype-money">
<title>Monetary Types</title>
<title>Monetary Types</title>
<note>
<para>
The <type>money</type> type is deprecated. Use
<type>numeric</type> or <type>decimal</type> instead, in
combination with the <function>to_char</function> function.
</para>
</note>
<para>
<para>
The <type>money</type> type stores a currency amount with a fixed
The <type>money</type> type stores a currency amount with a fixed
fractional precision; see <xref
fractional precision; see <xref
...
@@ -852,6 +844,14 @@ ALTER SEQUENCE <replaceable class="parameter">tablename</replaceable>_<replaceab
...
@@ -852,6 +844,14 @@ ALTER SEQUENCE <replaceable class="parameter">tablename</replaceable>_<replaceab
Output is generally in the latter form but depends on the locale.
Output is generally in the latter form but depends on the locale.
</para>
</para>
<para>
Since the output of this data type is locale-sensitive, it may not
work to load <type>money</> data into a database that has a different
setting of <varname>lc_monetary</>. To avoid problems, before
restoring a dump make sure <varname>lc_monetary</> has the same or
equivalent value as in the database that was dumped.
</para>
<table id="datatype-money-table">
<table id="datatype-money-table">
<title>Monetary Types</title>
<title>Monetary Types</title>
<tgroup cols="4">
<tgroup cols="4">
...
...
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