Changeset 42820 for branches/eam_branches/ipp-20230313/psLib/src/db/psDB.c
- Timestamp:
- May 8, 2025, 4:10:23 PM (15 months ago)
- Location:
- branches/eam_branches/ipp-20230313
- Files:
-
- 3 edited
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))) {
Note:
See TracChangeset
for help on using the changeset viewer.
