Browse Source

ckdb - report the set number of new seqsets

master
kanoi 10 years ago
parent
commit
a83c283b1f
  1. 5
      src/ckdb.c
  2. 2
      src/ckdb.h

5
src/ckdb.c

@ -2023,9 +2023,10 @@ setitemdata:
SEQSETWARN(expset, &seqset_exp, "discarded old", " for:"); SEQSETWARN(expset, &seqset_exp, "discarded old", " for:");
if (newseq || expseq) { if (newseq || expseq) {
btu64_to_buf(&n_seqstt, t_buf, sizeof(t_buf)); btu64_to_buf(&n_seqstt, t_buf, sizeof(t_buf));
LOGWARNING("Seq created new: %s %"PRIu64" " LOGWARNING("Seq created new: set %d %s %"PRIu64" "
SEQSTT" %"PRIu64"=%s "SEQPID" %"PRIu64, SEQSTT" %"PRIu64"=%s "SEQPID" %"PRIu64,
nam, n_seqcmd, n_seqstt, t_buf, n_seqpid); set, nam, n_seqcmd, n_seqstt, t_buf,
n_seqpid);
} }
} }

2
src/ckdb.h

@ -55,7 +55,7 @@
#define DB_VLOCK "1" #define DB_VLOCK "1"
#define DB_VERSION "1.0.0" #define DB_VERSION "1.0.0"
#define CKDB_VERSION DB_VERSION"-1.077" #define CKDB_VERSION DB_VERSION"-1.078"
#define WHERE_FFL " - from %s %s() line %d" #define WHERE_FFL " - from %s %s() line %d"
#define WHERE_FFL_HERE __FILE__, __func__, __LINE__ #define WHERE_FFL_HERE __FILE__, __func__, __LINE__

Loading…
Cancel
Save