mirror of https://github.com/citusdata/citus.git
Fix whitespace style issues
parent
e45d9eb386
commit
d9057d1f4b
|
@ -22,4 +22,4 @@ include $(citus_top_builddir)/Makefile.global
|
|||
|
||||
.PHONY: install-all
|
||||
install-all: install
|
||||
endif
|
||||
endif
|
||||
|
|
|
@ -1 +1 @@
|
|||
-- fake sql file 'Y'
|
||||
-- fake sql file 'Y'
|
||||
|
|
|
@ -24,4 +24,4 @@ END$proc$;
|
|||
-- functions under citus_internal for columnar
|
||||
ALTER EXTENSION citus_columnar DROP FUNCTION citus_internal.upgrade_columnar_storage;
|
||||
ALTER EXTENSION citus_columnar DROP FUNCTION citus_internal.downgrade_columnar_storage;
|
||||
ALTER EXTENSION citus_columnar DROP FUNCTION citus_internal.columnar_ensure_am_depends_catalog;
|
||||
ALTER EXTENSION citus_columnar DROP FUNCTION citus_internal.columnar_ensure_am_depends_catalog;
|
||||
|
|
|
@ -849,7 +849,7 @@ AlterExtensionUpdateStmtObjectAddress(Node *node, bool missing_ok)
|
|||
* per given extension name and extension verision
|
||||
*/
|
||||
void
|
||||
CreateExtensionWithVersion(const char *extname, char *extVersion)
|
||||
CreateExtensionWithVersion(char *extname, char *extVersion)
|
||||
{
|
||||
CreateExtensionStmt *createExtensionStmt = makeNode(CreateExtensionStmt);
|
||||
|
||||
|
@ -883,7 +883,7 @@ CreateExtensionWithVersion(const char *extname, char *extVersion)
|
|||
* per given extension name and updates extension verision
|
||||
*/
|
||||
void
|
||||
AlterExtensionUpdateStmt(const char *extname, char *extVersion)
|
||||
AlterExtensionUpdateStmt(char *extname, char *extVersion)
|
||||
{
|
||||
AlterExtensionStmt *alterExtensionStmt = makeNode(AlterExtensionStmt);
|
||||
|
||||
|
|
|
@ -9,4 +9,4 @@ BEGIN
|
|||
#include "../../columnar/sql/columnar--10.2-1--10.2-2.sql"
|
||||
END IF;
|
||||
END;
|
||||
$check_columnar$;
|
||||
$check_columnar$;
|
||||
|
|
|
@ -9,4 +9,4 @@ BEGIN
|
|||
#include "../../columnar/sql/columnar--10.2-2--10.2-3.sql"
|
||||
END IF;
|
||||
END;
|
||||
$check_columnar$;
|
||||
$check_columnar$;
|
||||
|
|
|
@ -34,5 +34,6 @@ END$proc$;
|
|||
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.columnar_ensure_am_depends_catalog;
|
||||
|
||||
END IF;
|
||||
END $check_citus$;
|
||||
END $check_citus$;
|
||||
|
|
|
@ -227,8 +227,8 @@ extern ObjectAddress AlterExtensionSchemaStmtObjectAddress(Node *stmt,
|
|||
bool missing_ok);
|
||||
extern ObjectAddress AlterExtensionUpdateStmtObjectAddress(Node *stmt,
|
||||
bool missing_ok);
|
||||
extern void CreateExtensionWithVersion(const char *extname, char *extVersion);
|
||||
extern void AlterExtensionUpdateStmt(const char *extname, char *extVersion);
|
||||
extern void CreateExtensionWithVersion(char *extname, char *extVersion);
|
||||
extern void AlterExtensionUpdateStmt(char *extname, char *extVersion);
|
||||
|
||||
/* foreign_constraint.c - forward declarations */
|
||||
extern bool ConstraintIsAForeignKeyToReferenceTable(char *constraintName,
|
||||
|
|
Loading…
Reference in New Issue