mtxr / SublimeText-SQLTools

SQLTools for Sublime Text 3
https://code.mteixeira.dev/SublimeText-SQLTools/
GNU General Public License v3.0
177 stars 40 forks source link

Bug: stderr output is ignored when streaming results output #91

Closed tkopets closed 7 years ago

tkopets commented 7 years ago

Issue Type: Bugfix/Errors Version: v0.9.0 OS: Windows, MacOS RDBMS: MySQL, PostgreSQL (probably all)

Description

Standard error output (stderr) is ignored when stream results is enabled ("use_streams": true). Errors are not displayed in the SQLTools output.

Steps to Reproduce

  1. set "use_streams": true in settings, configure connections
  2. select connection
  3. run SQL that should display error (e.g. select non_existing_identifier_to_get_error;)

Expected behavior: Error is displayed in SQLTools output

Actual behavior: Errors do not appear in SQLTools output

tkopets commented 7 years ago

I will look into it.