× Heads up!

Aqua Data Studio / nhilam

Follow
IDE for Relational Databases
×
narendravatsaraj(*) reported 2017-03-27T09:59:24Z  · tariqrahiman last modified 2017-03-31T04:31:03Z

Sort order and icons of the objects should match in Referenced by folder also.


Priority Minor
Complexity Unknown
Component App - Schema Browser
Version 18.0
Version: 19.0.0-dev-5
Build #: 53676
Build Date: 2017-Mar-23 09:10:38 PM
 
Operating Environment: Windows 8.1 (6.3, amd64) / Cp1252 / en / IN / Oracle Corporation 1.8.0_121-b13
Memory: Max=704,643,072;  Total=509,083,648;  Free=283,954,904;  CPUs=8
 
1.Launch ADS.
2. Connect to SQL Server 2014.
3.Execute below queries.
 
CREATE TABLE "dbo"."TrackingItem"  ( 
   "Id"       int IDENTITY(1,1) NOT NULL,
   "Issued"   date NOT NULL,
   "Category" int NOT NULL 
   )
GO

CREATE FUNCTION "dbo"."TrackingItemsModified"(@minId int)
RETURNS @trackingItems TABLE (
  Id       int      NOT NULL,
  Issued   date     NOT NULL,
  Category int      NOT NULL,
  Modified datetime NULL
)
AS
BEGIN
  INSERT INTO @trackingItems (Id, Issued, Category)
  SELECT ti.Id, ti.Issued, ti.Category
  FROM   TrackingItem ti
  WHERE  ti.Id >= @minId;
 
  UPDATE @trackingItems
  SET Category = Category + 1,
      Modified = GETDATE()
  WHERE Category%2 = 0;
  RETURN;
END
GO

CREATE NONCLUSTERED INDEX "X_TrackingItem_Issued"
   ON "dbo"."TrackingItem"("Issued")
GO
 

4.Table , Function and Index generated successfully.
5.Open Table Properties UI of created table, Observe Objects listed in Dependencies tab.
6.Now go to schema browser, expand tree node of created table, go up to Dependencies -> Referenced By folder, Observe Objects listed here.
7.If we compare Object list of Dependencies tab and Referenced By folder,

Actual Result :
1.Here we can see , Sort Order is not same in Referenced By folder.
2.Icons in Referenced By folder are also not identical, we should see same icons as we display in dependencies tab. 

3 attachments

Issue #15104

Closed
Fixed
Resolved 2017-03-29T14:10:28Z
 
 
Completion
No due date
Fixed Build v18.0.6-4, v19.0.0-dev-10
No time estimate

About AquaClusters Privacy Policy Support Version - 19.0.2-4 AquaFold, Inc Copyright © 2007-2017