Diff SUMLIB RmDopgc » History » Version 1
Herve Ballans, 18/09/2015 14:24
1 | 1 | Herve Ballans | h1. Diff SUMLIB_RmDopgc |
---|---|---|---|
2 | 1 | Herve Ballans | |
3 | 1 | Herve Ballans | <pre> |
4 | 1 | Herve Ballans | /usr/local/netdrms_8.10/base/sums/libs/pg# diff SUMLIB_RmDo.pgc.orig SUMLIB_RmDo.pgc |
5 | 1 | Herve Ballans | 9,10d8 |
6 | 1 | Herve Ballans | < EXEC SQL TYPE myuint64_t IS unsigned long long; |
7 | 1 | Herve Ballans | < |
8 | 1 | Herve Ballans | 13c11,12 |
9 | 1 | Herve Ballans | < |
10 | 1 | Herve Ballans | --- |
11 | 1 | Herve Ballans | > EXEC SQL TYPE myuint64_t IS unsigned long long int; |
12 | 1 | Herve Ballans | > |
13 | 1 | Herve Ballans | 27c26 |
14 | 1 | Herve Ballans | < myuint64_t p_sumid; |
15 | 1 | Herve Ballans | --- |
16 | 1 | Herve Ballans | > uint64_t p_sumid; |
17 | 1 | Herve Ballans | 30c29 |
18 | 1 | Herve Ballans | < myuint64_t p_ds_index; |
19 | 1 | Herve Ballans | --- |
20 | 1 | Herve Ballans | > uint64_t p_ds_index; |
21 | 1 | Herve Ballans | 102,103c101,105 |
22 | 1 | Herve Ballans | < int DS_RmNow(char *wd, myuint64_t sumid, double bytes, char *effdate, |
23 | 1 | Herve Ballans | < myuint64_t ds_index, int archsub, double *rmbytes) { |
24 | 1 | Herve Ballans | --- |
25 | 1 | Herve Ballans | > int DS_RmNow(char *wd, uint64_t sumid, double bytes, char *effdate, |
26 | 1 | Herve Ballans | > uint64_t ds_index, int archsub, double *rmbytes) { |
27 | 1 | Herve Ballans | > |
28 | 1 | Herve Ballans | > EXEC SQL TYPE myuint64_t IS unsigned long long int; |
29 | 1 | Herve Ballans | > |
30 | 1 | Herve Ballans | 111c113 |
31 | 1 | Herve Ballans | < myuint64_t eff_date, today_date; |
32 | 1 | Herve Ballans | --- |
33 | 1 | Herve Ballans | > uint64_t eff_date, today_date; |
34 | 1 | Herve Ballans | 119c121 |
35 | 1 | Herve Ballans | < today_date = (myuint64_t)atol(effd); |
36 | 1 | Herve Ballans | --- |
37 | 1 | Herve Ballans | > today_date = (uint64_t)atol(effd); |
38 | 1 | Herve Ballans | 130c132 |
39 | 1 | Herve Ballans | < eff_date = (myuint64_t)atol(effdate); |
40 | 1 | Herve Ballans | --- |
41 | 1 | Herve Ballans | > eff_date = (uint64_t)atol(effdate); |
42 | 1 | Herve Ballans | |
43 | 1 | Herve Ballans | </pre> |