projects
/
users
/
andresfreund
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fca89b
)
bdr: fix: SPI expects a char array for NULLs
author
Christian Kruse
<
[email protected]
>
Thu, 10 Apr 2014 07:03:15 +0000
(09:03 +0200)
committer
Andres Freund
<
[email protected]
>
Thu, 3 Jul 2014 15:55:24 +0000
(17:55 +0200)
contrib/bdr/bdr_seq.c
patch
|
blob
|
blame
|
history
diff --git
a/contrib/bdr/bdr_seq.c
b/contrib/bdr/bdr_seq.c
index 47cebfbc864b83ba89f06c77a03118d83100342a..91d7780cf9b363e16d6f57c1a354ed3e2886b21f 100644
(file)
--- a/
contrib/bdr/bdr_seq.c
+++ b/
contrib/bdr/bdr_seq.c
@@
-607,7
+607,7
@@
bdr_sequencer_vote(void)
{
Oid argtypes[4];
Datum values[4];
-
bool
nulls[4];
+
char
nulls[4];
char local_sysid[32];
int ret;
int my_processed;
@@
-666,7
+666,7
@@
bdr_sequencer_start_elections(void)
{
Oid argtypes[4];
Datum values[4];
-
bool
nulls[4];
+
char
nulls[4];
char local_sysid[32];
int ret;
@@
-719,7
+719,7
@@
bdr_sequencer_tally(void)
{
Oid argtypes[5];
Datum values[5];
-
bool
nulls[5];
+
char
nulls[5];
char local_sysid[32];
int ret;
@@
-793,7
+793,7
@@
bdr_sequencer_fill_chunk(Oid seqoid, char *seqschema, char *seqname,
{
Oid argtypes[6];
Datum values[6];
-
bool
nulls[6];
+
char
nulls[6];
char local_sysid[32];
int ret;
int64 lower, upper;