We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba72752 commit 1701e2aCopy full SHA for 1701e2a
src/70insert.js
@@ -119,7 +119,9 @@ yy.Insert.prototype.compile = function (databaseid) {
119
if (self.columns) {
120
// Validate that we have the right number of values for the columns
121
if (values.length !== self.columns.length) {
122
- throw new Error(createValueCountMismatchError(values.length, self.columns.length, 'columns'));
+ throw new Error(
123
+ createValueCountMismatchError(values.length, self.columns.length, 'columns')
124
+ );
125
}
126
self.columns.forEach(function (col, idx) {
127
//console.log(db.tables, tableid, table);
0 commit comments