Skip to content

Commit e8e7b63

Browse files
committed
Tweak selectivity for area-based operators. Still a crock...
1 parent 2cfb14e commit e8e7b63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/utils/adt/geo_selfuncs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.14 2000/04/12 17:15:50 momjian Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.15 2000/05/13 06:04:46 tgl Exp $
1313
*
1414
* XXX These are totally bogus. Perhaps someone will make them do
1515
* something reasonable, someday.
@@ -54,7 +54,7 @@ areasel(Oid opid,
5454
float64 result;
5555

5656
result = (float64) palloc(sizeof(float64data));
57-
*result = 0.05;
57+
*result = 0.02;
5858
return result;
5959
}
6060

@@ -68,7 +68,7 @@ areajoinsel(Oid opid,
6868
float64 result;
6969

7070
result = (float64) palloc(sizeof(float64data));
71-
*result = 0.05;
71+
*result = 0.02;
7272
return result;
7373
}
7474

0 commit comments

Comments
 (0)