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
63cfdb8d
Commit
63cfdb8d
authored
Jul 14, 2016
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust spellings of forms of "cancel"
parent
3aed52a6
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/optimizer/util/orclauses.c
src/backend/optimizer/util/orclauses.c
+1
-1
src/backend/storage/ipc/standby.c
src/backend/storage/ipc/standby.c
+1
-1
src/backend/utils/adt/misc.c
src/backend/utils/adt/misc.c
+1
-1
src/backend/utils/adt/numeric.c
src/backend/utils/adt/numeric.c
+1
-1
src/backend/utils/time/tqual.c
src/backend/utils/time/tqual.c
+1
-1
No files found.
src/backend/optimizer/util/orclauses.c
View file @
63cfdb8d
...
@@ -54,7 +54,7 @@ static void consider_new_or_clause(PlannerInfo *root, RelOptInfo *rel,
...
@@ -54,7 +54,7 @@ static void consider_new_or_clause(PlannerInfo *root, RelOptInfo *rel,
* fault is not really in the transformation, but in clauselist_selectivity's
* fault is not really in the transformation, but in clauselist_selectivity's
* inability to recognize redundant conditions.) We can compensate for this
* inability to recognize redundant conditions.) We can compensate for this
* redundancy by changing the cached selectivity of the original OR clause,
* redundancy by changing the cached selectivity of the original OR clause,
* cancel
l
ing out the (valid) reduction in the estimated sizes of the base
* canceling out the (valid) reduction in the estimated sizes of the base
* relations so that the estimated joinrel size remains the same. This is
* relations so that the estimated joinrel size remains the same. This is
* a MAJOR HACK: it depends on the fact that clause selectivities are cached
* a MAJOR HACK: it depends on the fact that clause selectivities are cached
* and on the fact that the same RestrictInfo node will appear in every
* and on the fact that the same RestrictInfo node will appear in every
...
...
src/backend/storage/ipc/standby.c
View file @
63cfdb8d
...
@@ -348,7 +348,7 @@ ResolveRecoveryConflictWithDatabase(Oid dbid)
...
@@ -348,7 +348,7 @@ ResolveRecoveryConflictWithDatabase(Oid dbid)
* We either resolve conflicts immediately or set a timeout to wake us at
* We either resolve conflicts immediately or set a timeout to wake us at
* the limit of our patience.
* the limit of our patience.
*
*
* Resolve conflicts by cancel
l
ing to all backends holding a conflicting
* Resolve conflicts by canceling to all backends holding a conflicting
* lock. As we are already queued to be granted the lock, no new lock
* lock. As we are already queued to be granted the lock, no new lock
* requests conflicting with ours will be granted in the meantime.
* requests conflicting with ours will be granted in the meantime.
*
*
...
...
src/backend/utils/adt/misc.c
View file @
63cfdb8d
...
@@ -532,7 +532,7 @@ pg_sleep(PG_FUNCTION_ARGS)
...
@@ -532,7 +532,7 @@ pg_sleep(PG_FUNCTION_ARGS)
* By computing the intended stop time initially, we avoid accumulation of
* By computing the intended stop time initially, we avoid accumulation of
* extra delay across multiple sleeps. This also ensures we won't delay
* extra delay across multiple sleeps. This also ensures we won't delay
* less than the specified time when WaitLatch is terminated early by a
* less than the specified time when WaitLatch is terminated early by a
* non-query-cancel
l
ing signal such as SIGHUP.
* non-query-canceling signal such as SIGHUP.
*/
*/
#ifdef HAVE_INT64_TIMESTAMP
#ifdef HAVE_INT64_TIMESTAMP
...
...
src/backend/utils/adt/numeric.c
View file @
63cfdb8d
...
@@ -7289,7 +7289,7 @@ div_var_fast(NumericVar *var1, NumericVar *var2, NumericVar *result,
...
@@ -7289,7 +7289,7 @@ div_var_fast(NumericVar *var1, NumericVar *var2, NumericVar *result,
* But having said that: div[qi] can be more than INT_MAX/NBASE, as
* But having said that: div[qi] can be more than INT_MAX/NBASE, as
* noted above, which means that the product div[qi] * NBASE *can*
* noted above, which means that the product div[qi] * NBASE *can*
* overflow. When that happens, adding it to div[qi + 1] will always
* overflow. When that happens, adding it to div[qi + 1] will always
* cause a cancel
l
ing overflow so that the end result is correct. We
* cause a canceling overflow so that the end result is correct. We
* could avoid the intermediate overflow by doing the multiplication
* could avoid the intermediate overflow by doing the multiplication
* and addition in int64 arithmetic, but so far there appears no need.
* and addition in int64 arithmetic, but so far there appears no need.
*/
*/
...
...
src/backend/utils/time/tqual.c
View file @
63cfdb8d
...
@@ -419,7 +419,7 @@ HeapTupleSatisfiesToast(HeapTuple htup, Snapshot snapshot,
...
@@ -419,7 +419,7 @@ HeapTupleSatisfiesToast(HeapTuple htup, Snapshot snapshot,
/*
/*
* An invalid Xmin can be left behind by a speculative insertion that
* An invalid Xmin can be left behind by a speculative insertion that
* is cancel
l
ed by super-deleting the tuple. We shouldn't see any of
* is canceled by super-deleting the tuple. We shouldn't see any of
* those in TOAST tables, but better safe than sorry.
* those in TOAST tables, but better safe than sorry.
*/
*/
else
if
(
!
TransactionIdIsValid
(
HeapTupleHeaderGetXmin
(
tuple
)))
else
if
(
!
TransactionIdIsValid
(
HeapTupleHeaderGetXmin
(
tuple
)))
...
...
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