Changeset 42820 for branches/eam_branches/ipp-20230313/psLib
- Timestamp:
- May 8, 2025, 4:10:23 PM (15 months ago)
- Location:
- branches/eam_branches/ipp-20230313
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
psLib (modified) (1 prop)
-
psLib/src/db/psDB.c (modified) (1 diff)
-
psLib/src/sys/psConfigure.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20230313
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-ppmerge-20241229 (added) merged: 42770-42778,42803-42805 /trunk merged: 42763-42764,42766-42769,42779-42782,42784-42796,42798-42802,42806-42813
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20230313/psLib
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-ppmerge-20241229/psLib (added) merged: 42771,42803 /trunk/psLib merged: 42763,42768,42786-42787,42789,42806
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20230313/psLib/src/db/psDB.c
r42761 r42820 1039 1039 fieldCount = mysql_num_fields(result); 1040 1040 1041 <<<<<<< .working 1041 1042 // annoyingly, in some versions of mysql the value my_ulonglong is actually unsigned long long and in others 1042 1043 // it is actually unsigned long. rather than try to set a print type which depends on the build, we just 1043 1044 // cast here to the unsigned long since it is rare that we would need such a large rowCount 1044 1045 psTrace("psLib.db", PS_LOG_INFO, "query returned %lu rows with %d fields", (unsigned long) rowCount, fieldCount); 1046 ||||||| .merge-left.r42748 1047 psTrace("psLib.db", PS_LOG_INFO, "query returned %lld rows with %d fields", rowCount, fieldCount); 1048 ======= 1049 psTrace("psLib.db", PS_LOG_INFO, "query returned %lu rows with %d fields", (long unsigned int) rowCount, fieldCount); 1050 >>>>>>> .merge-right.r42814 1045 1051 1046 1052 while ((row = mysql_fetch_row(result))) { -
branches/eam_branches/ipp-20230313/psLib/src/sys/psConfigure.c
r28043 r42820 29 29 #include <fftw3.h> 30 30 #include <gsl/gsl_version.h> 31 #include <gsl/gsl_errno.h> 31 32 #ifdef HAVE_PSDB 32 33 #include <mysql.h> … … 157 158 // XXX: Still needs error codes to be set 158 159 160 gsl_set_error_handler_off(); 161 159 162 if (timeConfig && strlen(timeConfig) > 0) { 160 163 if (!psTimeInit(timeConfig)) {
Note:
See TracChangeset
for help on using the changeset viewer.
