Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
53449458
Commit
53449458
authored
14 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Avoid saying "random" when randomness is not actually meant.
Per Thom Brown.
parent
a481ff71
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/sgml/ddl.sgml
+2
-2
2 additions, 2 deletions
doc/src/sgml/ddl.sgml
doc/src/sgml/textsearch.sgml
+2
-2
2 additions, 2 deletions
doc/src/sgml/textsearch.sgml
with
4 additions
and
4 deletions
doc/src/sgml/ddl.sgml
+
2
−
2
View file @
53449458
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.9
4
2010/0
7
/2
9
1
9:34:40 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.9
5
2010/0
8
/2
0
1
3: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
r
an
dom
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
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/textsearch.sgml
+
2
−
2
View file @
53449458
<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.5
7
2010/0
7
/2
9
1
9:34:40 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.5
8
2010/0
8
/2
0
1
3: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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment