Diff SUMLIB RmDoXpgc » History » Version 1
Herve Ballans, 18/09/2015 14:25
1 | 1 | Herve Ballans | h1. Diff SUMLIB_RmDoXpgc |
---|---|---|---|
2 | 1 | Herve Ballans | |
3 | 1 | Herve Ballans | <pre> |
4 | 1 | Herve Ballans | /usr/local/netdrms_8.10/base/sums/libs/pg# diff SUMLIB_RmDoX.pgc.orig SUMLIB_RmDoX.pgc |
5 | 1 | Herve Ballans | 9d8 |
6 | 1 | Herve Ballans | < EXEC SQL TYPE myunit64_t IS unsigned long long; |
7 | 1 | Herve Ballans | 20a20,21 |
8 | 1 | Herve Ballans | > EXEC SQL TYPE myuint64_t IS unsigned long long int; |
9 | 1 | Herve Ballans | > |
10 | 1 | Herve Ballans | 25,26c26,27 |
11 | 1 | Herve Ballans | < myunit64_t l_sumid; |
12 | 1 | Herve Ballans | < myunit64_t ds_index; |
13 | 1 | Herve Ballans | --- |
14 | 1 | Herve Ballans | > myuint64_t l_sumid; |
15 | 1 | Herve Ballans | > myuint64_t ds_index; |
16 | 1 | Herve Ballans | 35c36 |
17 | 1 | Herve Ballans | < myunit64_t p_sumid; |
18 | 1 | Herve Ballans | --- |
19 | 1 | Herve Ballans | > uint64_t p_sumid; |
20 | 1 | Herve Ballans | 38c39 |
21 | 1 | Herve Ballans | < myunit64_t p_ds_index; |
22 | 1 | Herve Ballans | --- |
23 | 1 | Herve Ballans | > uint64_t p_ds_index; |
24 | 1 | Herve Ballans | 120,121c121,125 |
25 | 1 | Herve Ballans | < int DS_RmNowX(char *wd, myunit64_t sumid, double bytes, char *effdate, |
26 | 1 | Herve Ballans | < myunit64_t ds_index, int archsub, double *rmbytes) { |
27 | 1 | Herve Ballans | --- |
28 | 1 | Herve Ballans | > int DS_RmNowX(char *wd, uint64_t sumid, double bytes, char *effdate, |
29 | 1 | Herve Ballans | > uint64_t ds_index, int archsub, double *rmbytes) { |
30 | 1 | Herve Ballans | > |
31 | 1 | Herve Ballans | > EXEC SQL TYPE myuint64_t IS unsigned long long int; |
32 | 1 | Herve Ballans | > |
33 | 1 | Herve Ballans | 125c129 |
34 | 1 | Herve Ballans | < myunit64_t l_ds_index; |
35 | 1 | Herve Ballans | --- |
36 | 1 | Herve Ballans | > myuint64_t l_ds_index; |
37 | 1 | Herve Ballans | 129c133 |
38 | 1 | Herve Ballans | < myunit64_t eff_date, today_date; |
39 | 1 | Herve Ballans | --- |
40 | 1 | Herve Ballans | > uint64_t eff_date, today_date; |
41 | 1 | Herve Ballans | 137c141 |
42 | 1 | Herve Ballans | < today_date = (myunit64_t)atol(effd); |
43 | 1 | Herve Ballans | --- |
44 | 1 | Herve Ballans | > today_date = (uint64_t)atol(effd); |
45 | 1 | Herve Ballans | 149c153 |
46 | 1 | Herve Ballans | < eff_date = (myunit64_t)atol(effdate); |
47 | 1 | Herve Ballans | --- |
48 | 1 | Herve Ballans | > eff_date = (uint64_t)atol(effdate); |
49 | 1 | Herve Ballans | |
50 | 1 | Herve Ballans | </pre> |