Looking through the code, I see intColumn which says "use to insert LONG" but, unless I'm missing something, we need to use BigInt to support LONG columns:
- intColumn(name: string, value: number): Sender {
+ intColumn(name: string, value: bigint): Sender {
I dug far enough that I believe I could put a PR together, but wanted to make sure I wasn't missing something.
Looking through the code, I see
intColumnwhich says "use to insert LONG" but, unless I'm missing something, we need to useBigIntto support LONG columns:I dug far enough that I believe I could put a PR together, but wanted to make sure I wasn't missing something.