mirror of https://github.com/citusdata/citus.git
Omit get_extension_schema from formatting
It exactly matches the implementation in extension.c.pull/327/head
parent
f874a56e24
commit
74372f70e0
|
@ -102,6 +102,7 @@ pg_get_extensiondef_string(Oid tableRelationId)
|
||||||
static Oid
|
static Oid
|
||||||
get_extension_schema(Oid ext_oid)
|
get_extension_schema(Oid ext_oid)
|
||||||
{
|
{
|
||||||
|
/* *INDENT-OFF* */
|
||||||
Oid result;
|
Oid result;
|
||||||
Relation rel;
|
Relation rel;
|
||||||
SysScanDesc scandesc;
|
SysScanDesc scandesc;
|
||||||
|
@ -131,6 +132,7 @@ get_extension_schema(Oid ext_oid)
|
||||||
heap_close(rel, AccessShareLock);
|
heap_close(rel, AccessShareLock);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
/* *INDENT-ON* */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue