Skip to content

Commit 02c5156

Browse files
committed
Updating relational showcase
1 parent 32017fd commit 02c5156

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

showcases/data/Store/Relational Store/Mapping/Semi Structure/Basic/code.pure

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Runtime simple::runtime::SnowflakeRuntime
169169

170170

171171
###Pure
172-
function simple::dotAndBracketNotationAccess(): TabularDataSet[1]
172+
function simple::dotAndBracketNotationAccess(): meta::pure::tds::TabularDataSet[1]
173173
{
174174
simple::model::Firm.all()->project(
175175
[
@@ -187,7 +187,7 @@ function simple::dotAndBracketNotationAccess(): TabularDataSet[1]
187187
)
188188
}
189189

190-
function simple::arrayElementNoFlattenAccess(): TabularDataSet[1]
190+
function simple::arrayElementNoFlattenAccess(): meta::pure::tds::TabularDataSet[1]
191191
{
192192
simple::model::Firm.all()->project(
193193
[
@@ -201,7 +201,7 @@ function simple::arrayElementNoFlattenAccess(): TabularDataSet[1]
201201
)
202202
}
203203

204-
function simple::extractEnumProperty(): TabularDataSet[1]
204+
function simple::extractEnumProperty(): meta::pure::tds::TabularDataSet[1]
205205
{
206206
simple::model::Firm.all()->project(
207207
[
@@ -215,7 +215,7 @@ function simple::extractEnumProperty(): TabularDataSet[1]
215215
)
216216
}
217217

218-
function simple::allDataTypesAccess(): TabularDataSet[1]
218+
function simple::allDataTypesAccess(): meta::pure::tds::TabularDataSet[1]
219219
{
220220
simple::model::Firm.all()->project(
221221
[

showcases/data/Store/Relational Store/Query/code.pure

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ Association showcase::northwind::model::associations::Order_OrderLineItem
577577
lineItems: showcase::northwind::model::OrderLineItem[*];
578578
}
579579

580-
function showcase::northwind::store::functions::SelectOnNorthWindCustomer(): Any[*]
580+
function showcase::northwind::store::functions::SelectOnNorthWindCustomer(): meta::pure::metamodel::relation::Relation<meta::pure::metamodel::type::Any>[*]
581581
{
582582
#>{showcase::northwind::store::NorthwindDatabase.NORTHWIND.CUSTOMERS}#->select(
583583
~[
@@ -588,14 +588,14 @@ function showcase::northwind::store::functions::SelectOnNorthWindCustomer(): Any
588588
)
589589
}
590590

591-
function showcase::northwind::store::functions::NorthwindDrop(): Any[*]
591+
function showcase::northwind::store::functions::NorthwindDrop(): meta::pure::metamodel::relation::Relation<meta::pure::metamodel::type::Any>[*]
592592
{
593593
#>{showcase::northwind::store::NorthwindDatabase.NORTHWIND.CUSTOMERS}#->drop(10)->from(
594594
showcase::northwind::store::NorthwindRuntime
595595
)
596596
}
597597

598-
function showcase::northwind::store::functions::NorthwindExtendd(): Any[*]
598+
function showcase::northwind::store::functions::NorthwindExtendd(): meta::pure::metamodel::relation::Relation<meta::pure::metamodel::type::Any>[*]
599599
{
600600
#>{showcase::northwind::store::NorthwindDatabase.NORTHWIND.CUSTOMERS}#->extend(
601601
~newCol: x|$x.CONTACT_NAME->toOne() + ' |' + $x.CONTACT_TITLE->toOne()
@@ -604,7 +604,7 @@ function showcase::northwind::store::functions::NorthwindExtendd(): Any[*]
604604
)
605605
}
606606

607-
function showcase::simple::functions::simpleFunctionSort(): Any[*]
607+
function showcase::simple::functions::simpleFunctionSort(): meta::pure::metamodel::relation::Relation<meta::pure::metamodel::type::Any>[*]
608608
{
609609
#>{showcase::simple::store::TestDatabase.TEST0}#->filter(
610610
c|$c.FIRSTNAME != 'Doe'
@@ -617,7 +617,7 @@ function showcase::simple::functions::simpleFunctionSort(): Any[*]
617617
)
618618
}
619619

620-
function showcase::simple::functions::simpleTableFunctionFilter(): Any[*]
620+
function showcase::simple::functions::simpleTableFunctionFilter(): meta::pure::metamodel::relation::Relation<meta::pure::metamodel::type::Any>[*]
621621
{
622622
#>{showcase::simple::store::TestDatabase.TEST0}#->filter(
623623
c|($c.FIRSTNAME != 'Doe') &&
@@ -631,7 +631,7 @@ function showcase::simple::functions::simpleTableFunctionFilter(): Any[*]
631631
)
632632
}
633633

634-
function showcase::simple::functions::simpleTableFunctionGroup(): Any[*]
634+
function showcase::simple::functions::simpleTableFunctionGroup(): meta::pure::metamodel::relation::Relation<meta::pure::metamodel::type::Any>[*]
635635
{
636636
#>{showcase::simple::store::TestDatabase.TEST0}#->filter(
637637
c|$c.FIRSTNAME != 'Doe'
@@ -647,7 +647,7 @@ function showcase::simple::functions::simpleTableFunctionGroup(): Any[*]
647647
)
648648
}
649649

650-
function showcase::simple::functions::simpleTableFunctionSlice(): Any[*]
650+
function showcase::simple::functions::simpleTableFunctionSlice(): meta::pure::metamodel::relation::Relation<meta::pure::metamodel::type::Any>[*]
651651
{
652652
#>{showcase::simple::store::TestDatabase.TEST0}#->filter(
653653
c|($c.FIRSTNAME != 'Doe') &&

0 commit comments

Comments
 (0)