Skip to content

Commit

Permalink
Remove accidental comments from previous debugging of a different issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DMickens committed May 10, 2024
1 parent 6690606 commit cddea6d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('Running Copy From Local File Commands', function () {
afterEach((done) => {
pool.query("DELETE FROM copyTable", (done))
})
/*

it('succeeds with basic copy from file command', function(done) {
pool.query("COPY copyTable FROM LOCAL 'copy-good.dat' RETURNREJECTED", (err, res) => {
assert.equal(err, undefined)
Expand Down Expand Up @@ -150,7 +150,7 @@ describe('Running Copy From Local File Commands', function () {
})
})
})
})*/
})

it ('succeeds with rejects file larger than buffer size', function(done) {
// file logic copied from good large copy file test, but with the columns switched so they are all bad instead
Expand Down Expand Up @@ -185,7 +185,7 @@ describe('Running Copy From Local File Commands', function () {
});

})
/*

it('succeeds with multiple input files', function(done) {
pool.query("COPY copyTable FROM LOCAL 'copy-good.dat', 'copy-bad.dat' RETURNREJECTED", (err, res) => {
assert.equal(err, undefined)
Expand All @@ -205,5 +205,5 @@ describe('Running Copy From Local File Commands', function () {
done()
})
})
})*/
})
})

0 comments on commit cddea6d

Please sign in to comment.