Result Streaming settings (#3537)

* add setting control for result streaming

* change default result streaming to true
This commit is contained in:
Anthony Dresser
2018-12-10 17:36:35 -08:00
committed by Karl Burtram
parent ca3146d38f
commit 42e55dd2dd
2 changed files with 49 additions and 22 deletions

View File

@@ -305,6 +305,11 @@ let registryProperties = {
'description': localize('sql.saveAsCsv.encoding', '[Optional] File encoding used when saving results as CSV'),
'default': 'utf-8'
},
'sql.results.streaming': {
'type': 'boolean',
'description': localize('sql.results.streaming', 'Enable results streaming; contains few minor visual issues'),
'default': true
},
'sql.copyIncludeHeaders': {
'type': 'boolean',
'description': localize('sql.copyIncludeHeaders', '[Optional] Configuration options for copying results from the Results View'),