4cffc3eb6f43e109452b5b52d1f760cf1ea6a981
jcasper
  Sun Jun 7 21:47:37 2026 -0700
Adjusting sessionDb and userDb IDs to be 64-bit in the code, since the database
is now ready for it and we're crossing the threshold.  refs #33554

diff --git src/inc/sqlList.h src/inc/sqlList.h
index 633eb921611..b38f317a3a0 100644
--- src/inc/sqlList.h
+++ src/inc/sqlList.h
@@ -87,30 +87,35 @@
 /* Prepares string for inclusion in a SQL statement . Remember to free
  * returned string.  returned string contains strlen(length)*2+1 as many bytes
  * as orig because in worst case every character has to be escaped.
  * Example 1: The Gene's Name -> The Gene''s Name
  * Example 2: he said "order and orient" -> he said ""order and orient"" */
 
 char *sqlEscapeString2(char *to, const char* from);
 /* Prepares a string for inclusion in a sql statement.  Output string
  * must be 2*strlen(from)+1 */
 
 int sqlUnsignedComma(char **pS);
 /* Return signed number at *pS.  Advance *pS past comma at end.
  * This function is used by the system that automatically loads
  * structured object from longblobs. */
 
+unsigned long sqlUnsignedLongComma(char **pS);
+/* Return unsigned long number at *pS.  Advance *pS past comma at end.
+ * This function is used by the system that automatically loads
+ * structured object from longblobs. */
+
 int sqlSignedComma(char **pS);
 /* Return signed number at *pS.  Advance *pS past comma at end */
 
 char sqlCharComma(char **pS);
 /* Return char at *pS.  Advance *pS past comma after char */
 
 long long sqlLongLongComma(char **pS);
 /* Return long long number at *pS.  Advance *pS past comma at end */
 
 double sqlDoubleComma(char **pS);
 /* Return double floating number at *pS.  Advance *pS past comma at end */
 
 float sqlFloatComma(char **pS);
 /* Return floating point number at *pS.  Advance *pS past comma at end */