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
d611517f
Commit
d611517f
authored
Apr 06, 2017
by
Andres Freund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix parallel bitmapscan tests on builds without USE_PREFETCH.
This was broken in
5a593153
.
parent
7e534adc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
src/test/regress/expected/select_parallel.out
src/test/regress/expected/select_parallel.out
+6
-1
src/test/regress/sql/select_parallel.sql
src/test/regress/sql/select_parallel.sql
+6
-1
No files found.
src/test/regress/expected/select_parallel.out
View file @
d611517f
...
...
@@ -175,7 +175,12 @@ set enable_indexscan to off;
set enable_hashjoin to off;
set enable_mergejoin to off;
set enable_material to off;
set effective_io_concurrency=50;
-- test prefetching, if the platform allows it
DO $$
BEGIN
SET effective_io_concurrency = 50;
EXCEPTION WHEN invalid_parameter_value THEN
END $$;
set work_mem='64kB'; --set small work mem to force lossy pages
explain (costs off)
select count(*) from tenk1, tenk2 where tenk1.hundred > 1 and tenk2.thousand=0;
...
...
src/test/regress/sql/select_parallel.sql
View file @
d611517f
...
...
@@ -70,7 +70,12 @@ set enable_indexscan to off;
set
enable_hashjoin
to
off
;
set
enable_mergejoin
to
off
;
set
enable_material
to
off
;
set
effective_io_concurrency
=
50
;
-- test prefetching, if the platform allows it
DO
$$
BEGIN
SET
effective_io_concurrency
=
50
;
EXCEPTION
WHEN
invalid_parameter_value
THEN
END
$$
;
set
work_mem
=
'64kB'
;
--set small work mem to force lossy pages
explain
(
costs
off
)
select
count
(
*
)
from
tenk1
,
tenk2
where
tenk1
.
hundred
>
1
and
tenk2
.
thousand
=
0
;
...
...
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