d983323cd2570af1cf3971763d14ef2d88c06fe4
jcasper
  Wed Feb 19 17:00:19 2025 -0800
sqlTableSize needs to support tables with more than 2B rows (rarely, but it does), refs #35262

diff --git src/hg/qa/reviewIndexes.c src/hg/qa/reviewIndexes.c
index 44942b31294..78358fe2bb2 100644
--- src/hg/qa/reviewIndexes.c
+++ src/hg/qa/reviewIndexes.c
@@ -1,28 +1,28 @@
 /* reviewIndexes - check indexes. */
 
 /* Copyright (C) 2013 The Regents of the University of California 
  * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 #include "common.h"
 #include "hdb.h"
 
 char *database = NULL;
 
 struct table
 {
     struct table *next;
-    int rowCount;
+    long rowCount;
     char *name;
 };
 		
 struct table *tableList = NULL;
 
 int tableCmp(const void *va, const void *vb)
 {
 const struct table *a = *((struct table **)va);
 const struct table *b = *((struct table **)vb);
 int dif;
 dif = a->rowCount - b->rowCount;
 return dif;
 }
 
 void usage()