Skip to content

Commit

Permalink
Fixes Date String Inputs
Browse files Browse the repository at this point in the history
Previously fixed for DateTime and DateTime2.  This applies the fix to Date.
  • Loading branch information
Jason Smedley authored and dhensby committed Mar 13, 2020
1 parent e88ab9a commit cc00e6a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Table.prototype._makeBulk = function _makeBulk () {
for (let i = 0; i < this.columns.length; i++) {
const col = this.columns[i]
switch (col.type) {
case TYPES.Date:
case TYPES.DateTime:
case TYPES.DateTime2:
for (let j = 0; j < this.rows.length; j++) {
Expand Down

0 comments on commit cc00e6a

Please sign in to comment.