mirror of
https://github.com/HypoPG/hypopg
synced 2026-05-23 17:18:44 +00:00
Fix hypopg_create_index argument retrieval.
This commit is contained in:
parent
12396d6db6
commit
e7d1fea516
1 changed files with 1 additions and 1 deletions
|
|
@ -1291,7 +1291,7 @@ hypopg(PG_FUNCTION_ARGS)
|
|||
Datum
|
||||
hypopg_create_index(PG_FUNCTION_ARGS)
|
||||
{
|
||||
char *sql = TextDatumGetCString(PG_GETARG_TEXT_PP(0));
|
||||
char *sql = TextDatumGetCString(PG_GETARG_DATUM(0));
|
||||
List *parsetree_list;
|
||||
ListCell *parsetree_item;
|
||||
ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
|
||||
|
|
|
|||
Loading…
Reference in a new issue