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
6b30d138
Commit
6b30d138
authored
May 09, 2018
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix whitespace
parent
93f6c632
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
8 deletions
+4
-8
src/bin/pg_basebackup/streamutil.c
src/bin/pg_basebackup/streamutil.c
+1
-1
src/test/isolation/specs/predicate-gin.spec
src/test/isolation/specs/predicate-gin.spec
+0
-1
src/test/isolation/specs/predicate-hash.spec
src/test/isolation/specs/predicate-hash.spec
+3
-3
src/test/regress/sql/func_index.sql
src/test/regress/sql/func_index.sql
+0
-2
src/test/regress/sql/index_including.sql
src/test/regress/sql/index_including.sql
+0
-1
No files found.
src/bin/pg_basebackup/streamutil.c
View file @
6b30d138
/*-------------------------------------------------------------------------
/*-------------------------------------------------------------------------
*
*
* streamutil.c - utility functions for pg_basebackup, pg_receivewal and
* streamutil.c - utility functions for pg_basebackup, pg_receivewal and
*
pg_recvlogical
* pg_recvlogical
*
*
* Author: Magnus Hagander <magnus@hagander.net>
* Author: Magnus Hagander <magnus@hagander.net>
*
*
...
...
src/test/isolation/specs/predicate-gin.spec
View file @
6b30d138
...
@@ -131,4 +131,3 @@ permutation "rxy4" "wy4" "rxy3" "c2" "wx3" "c1"
...
@@ -131,4 +131,3 @@ permutation "rxy4" "wy4" "rxy3" "c2" "wx3" "c1"
permutation "rxy1" "rxy2fu" "wx1" "c1" "wy2fu" "c2"
permutation "rxy1" "rxy2fu" "wx1" "c1" "wy2fu" "c2"
permutation "fu1" "rxy1" "rxy2fu" "wx1" "c1" "wy2fu" "c2"
permutation "fu1" "rxy1" "rxy2fu" "wx1" "c1" "wy2fu" "c2"
src/test/isolation/specs/predicate-hash.spec
View file @
6b30d138
...
@@ -28,7 +28,7 @@ teardown
...
@@ -28,7 +28,7 @@ teardown
}
}
session "s1"
session "s1"
setup
setup
{
{
begin isolation level serializable;
begin isolation level serializable;
set enable_seqscan=off;
set enable_seqscan=off;
...
@@ -45,7 +45,7 @@ step "c1" { commit; }
...
@@ -45,7 +45,7 @@ step "c1" { commit; }
session "s2"
session "s2"
setup
setup
{
{
begin isolation level serializable;
begin isolation level serializable;
set enable_seqscan=off;
set enable_seqscan=off;
...
@@ -99,7 +99,7 @@ permutation "rxy2" "wy2" "rxy1" "wx1" "c1" "c2"
...
@@ -99,7 +99,7 @@ permutation "rxy2" "wy2" "rxy1" "wx1" "c1" "c2"
permutation "rxy2" "wy2" "rxy1" "wx1" "c2" "c1"
permutation "rxy2" "wy2" "rxy1" "wx1" "c2" "c1"
permutation "rxy2" "wy2" "rxy1" "c2" "wx1" "c1"
permutation "rxy2" "wy2" "rxy1" "c2" "wx1" "c1"
# An index scan (from one transaction) and an index insert (from another
# An index scan (from one transaction) and an index insert (from another
# transaction) try to access different buckets of the index so no r-w conflict.
# transaction) try to access different buckets of the index so no r-w conflict.
permutation "rxy3" "wx3" "rxy4" "c1" "wy4" "c2"
permutation "rxy3" "wx3" "rxy4" "c1" "wy4" "c2"
...
...
src/test/regress/sql/func_index.sql
View file @
6b30d138
...
@@ -29,5 +29,3 @@ select pg_stat_get_xact_tuples_hot_updated('keyvalue'::regclass);
...
@@ -29,5 +29,3 @@ select pg_stat_get_xact_tuples_hot_updated('keyvalue'::regclass);
update
keyvalue
set
info
=
'{"name": "smith", "data": "some more data"}'
where
id
=
1
;
update
keyvalue
set
info
=
'{"name": "smith", "data": "some more data"}'
where
id
=
1
;
select
pg_stat_get_xact_tuples_hot_updated
(
'keyvalue'
::
regclass
);
select
pg_stat_get_xact_tuples_hot_updated
(
'keyvalue'
::
regclass
);
rollback
;
rollback
;
src/test/regress/sql/index_including.sql
View file @
6b30d138
...
@@ -197,4 +197,3 @@ ALTER TABLE tbl ALTER c1 TYPE bigint;
...
@@ -197,4 +197,3 @@ ALTER TABLE tbl ALTER c1 TYPE bigint;
ALTER
TABLE
tbl
ALTER
c3
TYPE
bigint
;
ALTER
TABLE
tbl
ALTER
c3
TYPE
bigint
;
\
d
tbl
\
d
tbl
DROP
TABLE
tbl
;
DROP
TABLE
tbl
;
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