Omit get_extension_schema from formatting

It exactly matches the implementation in extension.c.
pull/327/head
Jason Petersen 2016-02-05 17:19:43 -07:00
parent f874a56e24
commit 74372f70e0
No known key found for this signature in database
GPG Key ID: 9F1D3510D110ABA9
1 changed files with 2 additions and 0 deletions

View File

@ -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* */
} }