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
53449458
Commit
53449458
authored
Aug 20, 2010
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid saying "random" when randomness is not actually meant.
Per Thom Brown.
parent
a481ff71
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
doc/src/sgml/ddl.sgml
doc/src/sgml/ddl.sgml
+2
-2
doc/src/sgml/textsearch.sgml
doc/src/sgml/textsearch.sgml
+2
-2
No files found.
doc/src/sgml/ddl.sgml
View file @
53449458
<
!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.9
4 2010/07/29 19:34:40 petere
Exp $ -->
<
!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.9
5 2010/08/20 13:59:45 tgl
Exp $ -->
<
chapter
id
=
"ddl"
>
<
title
>
Data
Definition
</
title
>
...
...
@@ -36,7 +36,7 @@
is fixed, and each column has a name. The number of rows is
variable — it reflects how much data is stored at a given moment.
SQL does not make any guarantees about the order of the rows in a
table. When a table is read, the rows will appear in
random
order,
table. When a table is read, the rows will appear in
an unspecified
order,
unless sorting is explicitly requested. This is covered in <xref
linkend="queries">. Furthermore, SQL does not assign unique
identifiers to rows, so it is possible to have several completely
...
...
doc/src/sgml/textsearch.sgml
View file @
53449458
<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.5
7 2010/07/29 19:34:40 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.5
8 2010/08/20 13:59:45 tgl
Exp $ -->
<chapter id="textsearch">
<title>Full Text Search</title>
...
...
@@ -3270,7 +3270,7 @@ CREATE INDEX <replaceable>name</replaceable> ON <replaceable>table</replaceable>
(<productname>PostgreSQL</productname> does this automatically when needed.)
GiST indexes are lossy because each document is represented in the
index by a fixed-length signature. The signature is generated by hashing
each word into a
random
bit in an n-bit string, with all these bits OR-ed
each word into a
single
bit in an n-bit string, with all these bits OR-ed
together to produce an n-bit document signature. When two words hash to
the same bit position there will be a false match. If all words in
the query have matches (real or false) then the table row must be
...
...
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