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
1d494b62
Commit
1d494b62
authored
Mar 26, 2018
by
Andrew Dunstan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove two tests inadvertently added in
2b272734
parent
2b272734
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
18 deletions
+0
-18
src/test/regress/expected/indexing.out
src/test/regress/expected/indexing.out
+0
-16
src/test/regress/sql/indexing.sql
src/test/regress/sql/indexing.sql
+0
-2
No files found.
src/test/regress/expected/indexing.out
View file @
1d494b62
...
...
@@ -1082,22 +1082,6 @@ insert into fastpath select generate_series(1,10000), 'b', 100;
vacuum fastpath;
set enable_seqscan to false;
set enable_bitmapscan to false;
explain select sum(a) from fastpath where a = 6456;
QUERY PLAN
------------------------------------------------------------------------------------
Aggregate (cost=4.31..4.32 rows=1 width=8)
-> Index Only Scan using fpindex1 on fastpath (cost=0.29..4.30 rows=1 width=4)
Index Cond: (a = 6456)
(3 rows)
explain select sum(a) from fastpath where a >= 5000 and a < 5700;
QUERY PLAN
-------------------------------------------------------------------------------------
Aggregate (cost=5.41..5.42 rows=1 width=8)
-> Index Only Scan using fpindex1 on fastpath (cost=0.29..5.29 rows=50 width=4)
Index Cond: ((a >= 5000) AND (a < 5700))
(3 rows)
select sum(a) from fastpath where a = 6456;
sum
------
...
...
src/test/regress/sql/indexing.sql
View file @
1d494b62
...
...
@@ -592,8 +592,6 @@ vacuum fastpath;
set
enable_seqscan
to
false
;
set
enable_bitmapscan
to
false
;
explain
select
sum
(
a
)
from
fastpath
where
a
=
6456
;
explain
select
sum
(
a
)
from
fastpath
where
a
>=
5000
and
a
<
5700
;
select
sum
(
a
)
from
fastpath
where
a
=
6456
;
select
sum
(
a
)
from
fastpath
where
a
>=
5000
and
a
<
5700
;
...
...
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