mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
720 B
33 lines
720 B
|
12 years ago
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* network_selfuncs.c
|
||
|
|
* Functions for selectivity estimation of inet/cidr operators
|
||
|
|
*
|
||
|
|
* Currently these are just stubs, but we hope to do better soon.
|
||
|
|
*
|
||
|
|
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* IDENTIFICATION
|
||
|
|
* src/backend/utils/adt/network_selfuncs.c
|
||
|
|
*
|
||
|
|
*-------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
#include "postgres.h"
|
||
|
|
|
||
|
|
#include "utils/inet.h"
|
||
|
|
|
||
|
|
|
||
|
|
Datum
|
||
|
|
networksel(PG_FUNCTION_ARGS)
|
||
|
|
{
|
||
|
|
PG_RETURN_FLOAT8(0.001);
|
||
|
|
}
|
||
|
|
|
||
|
|
Datum
|
||
|
|
networkjoinsel(PG_FUNCTION_ARGS)
|
||
|
|
{
|
||
|
|
PG_RETURN_FLOAT8(0.001);
|
||
|
|
}
|