diff --git a/src/Microsoft.SqlTools.ServiceLayer/ObjectExplorer/SmoModel/SmoQuerier.cs b/src/Microsoft.SqlTools.ServiceLayer/ObjectExplorer/SmoModel/SmoQuerier.cs index 85c619e5..2c6f2dc3 100644 --- a/src/Microsoft.SqlTools.ServiceLayer/ObjectExplorer/SmoModel/SmoQuerier.cs +++ b/src/Microsoft.SqlTools.ServiceLayer/ObjectExplorer/SmoModel/SmoQuerier.cs @@ -149,14 +149,17 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectExplorer.SmoModel protected IEnumerable GetSmoCollectionResult(HashSet urns, SmoCollectionBase retValue, SqlSmoObject parent) where T : SqlSmoObject { - if (urns != null) - { - return new SmoCollectionWrapper(retValue).Where(c => PassesFinalFilters(parent, c) && urns.Contains(c.Urn)); - } - else - { - return new SmoCollectionWrapper(retValue).Where(c => PassesFinalFilters(parent, c)); - } + // the below code is filtering out tables on helsinki system + return new SmoCollectionWrapper(retValue); + + // if (urns != null) + // { + // return new SmoCollectionWrapper(retValue).Where(c => PassesFinalFilters(parent, c) && urns.Contains(c.Urn)); + // } + // else + // { + // return new SmoCollectionWrapper(retValue).Where(c => PassesFinalFilters(parent, c)); + // } } } diff --git a/src/Microsoft.SqlTools.ServiceLayer/SqlContext/ObjectExplorerSettings.cs b/src/Microsoft.SqlTools.ServiceLayer/SqlContext/ObjectExplorerSettings.cs index b22aa49b..8d0adf56 100644 --- a/src/Microsoft.SqlTools.ServiceLayer/SqlContext/ObjectExplorerSettings.cs +++ b/src/Microsoft.SqlTools.ServiceLayer/SqlContext/ObjectExplorerSettings.cs @@ -10,8 +10,8 @@ namespace Microsoft.SqlTools.ServiceLayer.SqlContext /// public class ObjectExplorerSettings { - public static int DefaultCreateSessionTimeout = 10; - public static int DefaultExpandTimeout = 10; + public static int DefaultCreateSessionTimeout = 300; + public static int DefaultExpandTimeout = 300; public ObjectExplorerSettings() {