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
784b9489
Commit
784b9489
authored
Jul 01, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix platform-dependency in recently added regression tests.
Per buildfarm results.
parent
539bc9fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
src/test/regress/expected/create_index.out
src/test/regress/expected/create_index.out
+12
-12
src/test/regress/sql/create_index.sql
src/test/regress/sql/create_index.sql
+6
-6
No files found.
src/test/regress/expected/create_index.out
View file @
784b9489
...
...
@@ -59,11 +59,11 @@ SET enable_indexscan = OFF;
SET enable_bitmapscan = OFF;
SELECT * FROM fast_emp4000
WHERE home_base @ '(200,200),(2000,1000)'::box
ORDER BY home_base USING <
<
;
ORDER BY home_base USING <;
home_base
-----------------------
(337,455),(240,359)
(1444,403),(1346,344)
(337,455),(240,359)
(2 rows)
SELECT count(*) FROM fast_emp4000 WHERE home_base && '(1000,1000,0,0)'::box;
...
...
@@ -80,11 +80,11 @@ SET enable_bitmapscan = ON;
-- changes too often for me to want to put an EXPLAIN in the test...)
SELECT * FROM fast_emp4000
WHERE home_base @ '(200,200),(2000,1000)'::box
ORDER BY home_base USING <
<
;
ORDER BY home_base USING <;
home_base
-----------------------
(337,455),(240,359)
(1444,403),(1346,344)
(337,455),(240,359)
(2 rows)
SELECT count(*) FROM fast_emp4000 WHERE home_base && '(1000,1000,0,0)'::box;
...
...
@@ -111,11 +111,11 @@ SET enable_indexscan = OFF;
SET enable_bitmapscan = OFF;
SELECT * FROM fast_emp4000
WHERE home_base @ '(200,200),(2000,1000)'::box
ORDER BY home_base USING <
<
;
ORDER BY home_base USING <;
home_base
-----------------------
(337,455),(240,359)
(1444,403),(1346,344)
(337,455),(240,359)
(2 rows)
SELECT count(*) FROM fast_emp4000 WHERE home_base && '(1000,1000,0,0)'::box;
...
...
@@ -132,12 +132,12 @@ SELECT * FROM polygon_tbl WHERE f1 ~ '((1,1),(2,2),(2,1))'::polygon
(1 row)
SELECT * FROM circle_tbl WHERE f1 && circle(point(1,-2), 1)
ORDER BY f1 USING <
<
;
ORDER BY f1 USING <;
f1
---------------
<(1,2),3>
<(1,3),5>
<(1,2),100>
<(1,2),3>
<(100,1),115>
(4 rows)
...
...
@@ -161,11 +161,11 @@ SET enable_bitmapscan = ON;
-- changes too often for me to want to put an EXPLAIN in the test...)
SELECT * FROM fast_emp4000
WHERE home_base @ '(200,200),(2000,1000)'::box
ORDER BY home_base USING <
<
;
ORDER BY home_base USING <;
home_base
-----------------------
(337,455),(240,359)
(1444,403),(1346,344)
(337,455),(240,359)
(2 rows)
SELECT count(*) FROM fast_emp4000 WHERE home_base && '(1000,1000,0,0)'::box;
...
...
@@ -182,12 +182,12 @@ SELECT * FROM polygon_tbl WHERE f1 ~ '((1,1),(2,2),(2,1))'::polygon
(1 row)
SELECT * FROM circle_tbl WHERE f1 && circle(point(1,-2), 1)
ORDER BY f1 USING <
<
;
ORDER BY f1 USING <;
f1
---------------
<(1,2),3>
<(1,3),5>
<(1,2),100>
<(1,2),3>
<(100,1),115>
(4 rows)
...
...
src/test/regress/sql/create_index.sql
View file @
784b9489
...
...
@@ -83,7 +83,7 @@ SET enable_bitmapscan = OFF;
SELECT
*
FROM
fast_emp4000
WHERE
home_base
@
'(200,200),(2000,1000)'
::
box
ORDER
BY
home_base
USING
<
<
;
ORDER
BY
home_base
USING
<
;
SELECT
count
(
*
)
FROM
fast_emp4000
WHERE
home_base
&&
'(1000,1000,0,0)'
::
box
;
...
...
@@ -96,7 +96,7 @@ SET enable_bitmapscan = ON;
-- changes too often for me to want to put an EXPLAIN in the test...)
SELECT
*
FROM
fast_emp4000
WHERE
home_base
@
'(200,200),(2000,1000)'
::
box
ORDER
BY
home_base
USING
<
<
;
ORDER
BY
home_base
USING
<
;
SELECT
count
(
*
)
FROM
fast_emp4000
WHERE
home_base
&&
'(1000,1000,0,0)'
::
box
;
...
...
@@ -128,7 +128,7 @@ SET enable_bitmapscan = OFF;
SELECT
*
FROM
fast_emp4000
WHERE
home_base
@
'(200,200),(2000,1000)'
::
box
ORDER
BY
home_base
USING
<
<
;
ORDER
BY
home_base
USING
<
;
SELECT
count
(
*
)
FROM
fast_emp4000
WHERE
home_base
&&
'(1000,1000,0,0)'
::
box
;
...
...
@@ -136,7 +136,7 @@ SELECT * FROM polygon_tbl WHERE f1 ~ '((1,1),(2,2),(2,1))'::polygon
ORDER
BY
f1
USING
<<
;
SELECT
*
FROM
circle_tbl
WHERE
f1
&&
circle
(
point
(
1
,
-
2
),
1
)
ORDER
BY
f1
USING
<
<
;
ORDER
BY
f1
USING
<
;
SELECT
count
(
*
)
FROM
gpolygon_tbl
WHERE
f1
&&
'(1000,1000,0,0)'
::
polygon
;
...
...
@@ -151,7 +151,7 @@ SET enable_bitmapscan = ON;
-- changes too often for me to want to put an EXPLAIN in the test...)
SELECT
*
FROM
fast_emp4000
WHERE
home_base
@
'(200,200),(2000,1000)'
::
box
ORDER
BY
home_base
USING
<
<
;
ORDER
BY
home_base
USING
<
;
SELECT
count
(
*
)
FROM
fast_emp4000
WHERE
home_base
&&
'(1000,1000,0,0)'
::
box
;
...
...
@@ -159,7 +159,7 @@ SELECT * FROM polygon_tbl WHERE f1 ~ '((1,1),(2,2),(2,1))'::polygon
ORDER
BY
f1
USING
<<
;
SELECT
*
FROM
circle_tbl
WHERE
f1
&&
circle
(
point
(
1
,
-
2
),
1
)
ORDER
BY
f1
USING
<
<
;
ORDER
BY
f1
USING
<
;
SELECT
count
(
*
)
FROM
gpolygon_tbl
WHERE
f1
&&
'(1000,1000,0,0)'
::
polygon
;
...
...
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