zk-SQL
zk-SQL copied to clipboard
A Possible Bug
Thanks for your zk-SQL, it is a nice project. However, I find a possible bug as follows.
For the file zk-SQL/circuits/select.circom, the code in line 62
for (j=0; j<nAND; j++) {
may be corrected to
for (j=0; j<nColumns; j++) {.
In addition, within the for-loop of line 62, a for-loop about nAND may be needed.