microsoft / vscode-mssql

Visual Studio Code SQL Server extension.
Other
1.55k stars 458 forks source link

Query execution message text isn't positioned properly #18405

Open kburtram opened 2 weeks ago

kburtram commented 2 weeks ago
  1. Run a query and look at the message

Expected: Text more in the left of the visible pane.

Actual: Text is way too far to the right.

Image

For reference here's what it looks like in ADS:

Image

laurennat commented 2 weeks ago

also, if there are multiple lines in the message, it ends up not spacing properly

Image

caohai commented 2 weeks ago

@laurennat Can you share the repro query for this?

laurennat commented 1 week ago

select 2 for json auto

croblesm commented 1 week ago

@caohai Same issue. This is the query I used:

INSERT INTO authors (id, first_name, middle_name, last_name) VALUES
(6, 'Frank', 'Patrick', 'Herbert'), 
(7, 'Orson', 'Scott', 'Card'), 
(8, 'Suzanne', NULL, 'Collins'),
(9, 'Andy', NULL, 'Weir'), 
(10, 'Yuval', 'Noah', 'Harari');

Result: Image