mirror of https://github.com/citusdata/citus.git
Fix whitespace style issues
parent
e45d9eb386
commit
d9057d1f4b
|
@ -849,7 +849,7 @@ AlterExtensionUpdateStmtObjectAddress(Node *node, bool missing_ok)
|
||||||
* per given extension name and extension verision
|
* per given extension name and extension verision
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
CreateExtensionWithVersion(const char *extname, char *extVersion)
|
CreateExtensionWithVersion(char *extname, char *extVersion)
|
||||||
{
|
{
|
||||||
CreateExtensionStmt *createExtensionStmt = makeNode(CreateExtensionStmt);
|
CreateExtensionStmt *createExtensionStmt = makeNode(CreateExtensionStmt);
|
||||||
|
|
||||||
|
@ -883,7 +883,7 @@ CreateExtensionWithVersion(const char *extname, char *extVersion)
|
||||||
* per given extension name and updates extension verision
|
* per given extension name and updates extension verision
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
AlterExtensionUpdateStmt(const char *extname, char *extVersion)
|
AlterExtensionUpdateStmt(char *extname, char *extVersion)
|
||||||
{
|
{
|
||||||
AlterExtensionStmt *alterExtensionStmt = makeNode(AlterExtensionStmt);
|
AlterExtensionStmt *alterExtensionStmt = makeNode(AlterExtensionStmt);
|
||||||
|
|
||||||
|
|
|
@ -34,5 +34,6 @@ END$proc$;
|
||||||
ALTER EXTENSION citus DROP FUNCTION citus_internal.upgrade_columnar_storage;
|
ALTER EXTENSION citus DROP FUNCTION citus_internal.upgrade_columnar_storage;
|
||||||
ALTER EXTENSION citus DROP FUNCTION citus_internal.downgrade_columnar_storage;
|
ALTER EXTENSION citus DROP FUNCTION citus_internal.downgrade_columnar_storage;
|
||||||
ALTER EXTENSION citus DROP FUNCTION citus_internal.columnar_ensure_am_depends_catalog;
|
ALTER EXTENSION citus DROP FUNCTION citus_internal.columnar_ensure_am_depends_catalog;
|
||||||
|
|
||||||
END IF;
|
END IF;
|
||||||
END $check_citus$;
|
END $check_citus$;
|
|
@ -227,8 +227,8 @@ extern ObjectAddress AlterExtensionSchemaStmtObjectAddress(Node *stmt,
|
||||||
bool missing_ok);
|
bool missing_ok);
|
||||||
extern ObjectAddress AlterExtensionUpdateStmtObjectAddress(Node *stmt,
|
extern ObjectAddress AlterExtensionUpdateStmtObjectAddress(Node *stmt,
|
||||||
bool missing_ok);
|
bool missing_ok);
|
||||||
extern void CreateExtensionWithVersion(const char *extname, char *extVersion);
|
extern void CreateExtensionWithVersion(char *extname, char *extVersion);
|
||||||
extern void AlterExtensionUpdateStmt(const char *extname, char *extVersion);
|
extern void AlterExtensionUpdateStmt(char *extname, char *extVersion);
|
||||||
|
|
||||||
/* foreign_constraint.c - forward declarations */
|
/* foreign_constraint.c - forward declarations */
|
||||||
extern bool ConstraintIsAForeignKeyToReferenceTable(char *constraintName,
|
extern bool ConstraintIsAForeignKeyToReferenceTable(char *constraintName,
|
||||||
|
|
Loading…
Reference in New Issue