1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Add FILLFACTOR to CREATE INDEX.

ITAGAKI Takahiro
This commit is contained in:
Bruce Momjian
2006-07-02 02:23:23 +00:00
parent 5d5c1416bf
commit 277807bd9e
65 changed files with 1458 additions and 309 deletions

View File

@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gin/ginutil.c,v 1.1 2006/05/02 11:28:54 teodor Exp $
* $PostgreSQL: pgsql/src/backend/access/gin/ginutil.c,v 1.2 2006/07/02 02:23:18 momjian Exp $
*-------------------------------------------------------------------------
*/
@ -201,3 +201,17 @@ GinPageGetCopyPage( Page page ) {
return tmppage;
}
Datum
ginoption(PG_FUNCTION_ARGS)
{
ArrayType *options = (ArrayType *) PG_GETARG_POINTER(0);
if (options != NULL)
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("GIN does not support parameters at all")));
/* Do not use PG_RETURN_NULL. */
PG_RETURN_BYTEA_P(NULL);
}