anthonydresser / testissues

0 stars 0 forks source link

Line 501 is missing when exporting results to csv or Excel #5030

Open anthonydresser opened 3 years ago

anthonydresser commented 3 years ago

Steps to Reproduce:

  1. Open new Notebook
  2. Create new Code Cell
  3. Select Kernel SQL, Connect to a database
  4. Enter Statement: WITH x AS (SELECT 1 n UNION ALL SELECT n + 1 FROM x WHERE n < 600) SELECT * FROM x OPTION (MAXRECURSION 1000)
  5. Run the cell
  6. From the Results Grid, click 'Save as CSV', save the file
  7. Open the csv file from the previous step in a text editor, e.g. NotePad++, Visual Studio
  8. Line 501 is missing from the file, i.e.
    • 498
    • 499
    • 500
    • !!! This Row Is Missing !!!
    • 502
    • 503