Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 877e296

Browse files
committed
Spelling fix.
Robert Treat
1 parent 9ca4c15 commit 877e296

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

doc/FAQ

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Frequently Asked Questions (FAQ) for PostgreSQL
33

4-
Last updated: Sat Jun 3 20:17:01 EDT 2006
4+
Last updated: Wed Jun 7 17:22:48 EDT 2006
55

66
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
77

@@ -519,7 +519,7 @@
519519

520520
One limitation is that indexes can not be created on columns longer
521521
than about 2,000 characters. Fortunately, such indexes are rarely
522-
needed. Uniqueness is best guaranteed by a funtion index of an MD5
522+
needed. Uniqueness is best guaranteed by a function index of an MD5
523523
hash of the long column, and full text indexing allows for searching
524524
of words within the column.
525525

@@ -620,8 +620,8 @@
620620
FROM tab
621621
WHERE lower(col) = 'abc';
622622

623-
This will not use an standard index. However, if you create a
624-
expresssion index, it will be used:
623+
This will not use an standard index. However, if you create an
624+
expression index, it will be used:
625625
CREATE INDEX tabindex ON tab (lower(col));
626626

627627
If the above index is created as UNIQUE, though the column can store
@@ -726,7 +726,7 @@
726726
4.12) What is an OID? What is a CTID?
727727

728728
Every row that is created in PostgreSQL gets a unique OID unless
729-
created WITHOUT OIDS. OIDs are autotomatically assigned unique 4-byte
729+
created WITHOUT OIDS. OIDs are automatically assigned unique 4-byte
730730
integers that are unique across the entire installation. However, they
731731
overflow at 4 billion, and then the OIDs start being duplicated.
732732
PostgreSQL uses OIDs to link its internal system tables together.

doc/src/FAQ/FAQ.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
alink="#0000ff">
1111
<H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1>
1212

13-
<P>Last updated: Sat Jun 3 20:17:01 EDT 2006</P>
13+
<P>Last updated: Wed Jun 7 17:22:48 EDT 2006</P>
1414

1515
<P>Current maintainer: Bruce Momjian (<A href=
1616
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)
@@ -694,7 +694,7 @@ <H3 id="item4.4">4.4) What is the maximum size for a row, a
694694

695695
<P>One limitation is that indexes can not be created on columns
696696
longer than about 2,000 characters. Fortunately, such indexes are
697-
rarely needed. Uniqueness is best guaranteed by a funtion index
697+
rarely needed. Uniqueness is best guaranteed by a function index
698698
of an MD5 hash of the long column, and full text indexing
699699
allows for searching of words within the column.</P>
700700

@@ -812,8 +812,8 @@ <H3 id="item4.8">4.8) How do I perform regular expression
812812
FROM tab
813813
WHERE lower(col) = 'abc';
814814
</PRE>
815-
This will not use an standard index. However, if you create a
816-
expresssion index, it will be used:
815+
This will not use an standard index. However, if you create an
816+
expression index, it will be used:
817817
<PRE>
818818
CREATE INDEX tabindex ON tab (lower(col));
819819
</PRE>
@@ -957,7 +957,7 @@ <H3 id="item4.12">4.12) What is an <SMALL>OID</SMALL>? What is
957957

958958
<P>Every row that is created in PostgreSQL gets a unique
959959
<SMALL>OID</SMALL> unless created <SMALL>WITHOUT OIDS</SMALL>.
960-
O<SMALL>ID</SMALL>s are autotomatically assigned unique 4-byte
960+
O<SMALL>ID</SMALL>s are automatically assigned unique 4-byte
961961
integers that are unique across the entire installation. However,
962962
they overflow at 4 billion, and then the O<SMALL>ID</SMALL>s start
963963
being duplicated. PostgreSQL uses <SMALL>OID</SMALL>s to link its

0 commit comments

Comments
 (0)