Skip to content

Commit 6ac197a

Browse files
committed
Fix oql types
1 parent 49b4f23 commit 6ac197a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mdl-examples/doctype-tests/01-domain-model-examples.mdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1474,7 +1474,7 @@ CREATE VIEW ENTITY DmTest.TaskPerformanceAnalysis (
14741474
IsCompleted: Boolean,
14751475
EstimatedHours: Decimal,
14761476
ActualHours: Decimal,
1477-
EfficiencyRatio: Decimal,
1477+
EfficiencyRatio: Integer,
14781478
AssigneeTaskCount: Integer
14791479
) AS
14801480
SELECT
@@ -1561,7 +1561,7 @@ CREATE VIEW ENTITY DmTest.ComprehensiveDashboard (
15611561
EntityName: String(100),
15621562
TotalCount: Integer,
15631563
ActiveCount: Integer,
1564-
CompletionRate: Integer,
1564+
CompletionRate: Decimal,
15651565
AvgValue: Decimal
15661566
) AS
15671567
SELECT

0 commit comments

Comments
 (0)