(a)
| 69 | }); |
| 70 | it('should get passed to virtual tables defined with the "safeIntegers" option', function () { |
| 71 | this.db.table('customvtab', { safeIntegers: true, columns: ['x'], *rows(a) { yield [(typeof a) + a]; } }); |
| 72 | expect(this.db.prepare('SELECT * FROM customvtab(?)').pluck().get(2)).to.equal('number2'); |
| 73 | expect(this.db.prepare('SELECT * FROM customvtab(?)').pluck().get(BigInt(2))).to.equal('bigint2'); |
| 74 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected