Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ PG_CPPFLAGS += -I$(libpq_srcdir) \
-I$(realpath src/compat/$(PGVER)) \
-Werror=implicit-function-declaration
SHLIB_LINK += $(libpq) $(filter -lintl, $(LIBS))
ifdef NO_LOG_OLD_VALUE
PG_CPPFLAGS += -DNO_LOG_OLD_VALUE
endif

REGRESS := __placeholder__
EXTRA_CLEAN += $(control_path) spock_compat.bc
Expand Down
1 change: 1 addition & 0 deletions include/spock.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#define SPOCK_VERSION_NUM 60000

#define EXTENSION_NAME "spock"
#define SPOCK_SECLABEL_PROVIDER "spock"

#define REPLICATION_ORIGIN_ALL "all"

Expand Down
7 changes: 5 additions & 2 deletions include/spock_relcache.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ typedef struct SpockRelation
Oid idxoid;
Relation rel;
int *attmap;
bool has_delta_columns;
Oid *delta_apply_functions;

/* Additional cache, only valid as long as relation mapping is. */
bool hasTriggers;

Oid *delta_apply_functions;
bool has_delta_columns;
} SpockRelation;

extern void spock_relation_cache_update(uint32 remoteid,
Expand All @@ -68,6 +69,8 @@ extern void spock_relation_cache_reset(void);

extern Oid spock_lookup_delta_function(char *fname, Oid typeoid);

extern Oid get_replication_identity(Relation rel);

struct SpockTupleData;

#endif /* SPOCK_RELCACHE_H */
194 changes: 0 additions & 194 deletions patches/15/pg15-015-attoptions.diff

This file was deleted.

Loading