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/lib/sqlList.c src/lib/sqlList.c
index 9a0460ae638..dc18d7219af 100644
--- src/lib/sqlList.c
+++ src/lib/sqlList.c
@@ -1071,30 +1071,42 @@
 }
 
 int sqlUnsignedComma(char **pS)
 /* Return signed number at *pS.  Advance *pS past comma at end */
 {
 char *s = *pS;
 char *e = strchr(s, ',');
 unsigned ret;
 
 *e++ = 0;
 *pS = e;
 ret = sqlUnsigned(s);
 return ret;
 }
 
+unsigned long sqlUnsignedLongComma(char **pS)
+/* Return unsigned long number at *pS.  Advance *pS past comma at end */
+{
+char *s = *pS;
+char *e = strchr(s, ',');
+unsigned long ret;
+
+*e++ = 0;
+*pS = e;
+ret = sqlUnsignedLong(s);
+return ret;
+}
 
 int sqlSignedComma(char **pS)
 /* Return signed number at *pS.  Advance *pS past comma at end */
 {
 char *s = *pS;
 char *e = strchr(s, ',');
 int ret;
 
 *e++ = 0;
 *pS = e;
 ret = sqlSigned(s);
 return ret;
 }
 
 char sqlCharComma(char **pS)