Skip to content

Commit 82f8a5b

Browse files
authored
Merge pull request #10 from intersystems-community/fix-cub-builds
sync builds
2 parents c7462ef + 343392f commit 82f8a5b

File tree

11 files changed

+27
-37
lines changed

11 files changed

+27
-37
lines changed

src/BG/Utils.cls

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class BG.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("BGCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("BGCube",0)
88
}
99

1010
ClassMethod Populate() As %Status
@@ -64,7 +64,7 @@ ClassMethod ImportXData(className As %String, xDataName As %String) As %Status
6464
}
6565

6666
write !,"Import - "_itemsCount_" objects of class "_className
67-
67+
6868
Quit $$$OK
6969
}
7070

@@ -4738,4 +4738,3 @@ XData ParameterXData
47384738
}
47394739

47404740
}
4741-

src/CZ/Utils.cls

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class CZ.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("CZCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("CZCube",0)
88
}
99

1010
ClassMethod Populate() As %Status
@@ -64,7 +64,7 @@ ClassMethod ImportXData(className As %String, xDataName As %String) As %Status
6464
}
6565

6666
write !,"Import - "_itemsCount_" objects of class "_className
67-
67+
6868
Quit $$$OK
6969
}
7070

@@ -1536,4 +1536,3 @@ XData ParameterXData
15361536
}
15371537

15381538
}
1539-

src/FIN/Utils.cls

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class FIN.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("FinCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("FinCube",0)
88
}
99

1010
ClassMethod Populate()
@@ -5762,4 +5762,3 @@ XData ParameterXData
57625762
}
57635763

57645764
}
5765-

src/KZ/Utils.cls

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class KZ.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("KZCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("KZCube",0)
88
}
99

1010
ClassMethod Populate() As %Status
@@ -64,7 +64,7 @@ ClassMethod ImportXData(className As %String, xDataName As %String) As %Status
6464
}
6565

6666
write !,"Import - "_itemsCount_" objects of class "_className
67-
67+
6868
Quit $$$OK
6969
}
7070

@@ -3078,4 +3078,3 @@ XData ParameterXData
30783078
}
30793079

30803080
}
3081-

src/RF/KHAB/Utils.cls

+6-7
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ Class RF.KHAB.Utils
44
ClassMethod Setup() As %Status
55
{
66
set sc = ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("KHABCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("KHABCube",0)
88
quit sc
99
}
1010

1111
ClassMethod Populate() As %Status
1212
{
1313
set (sc1, sc2) = $$$OK
14-
14+
1515
set sc1 = ##class(RF.KHAB.Region).%KillExtent()
16-
16+
1717
set ^regions("Аяно-Майский район") = 1971
1818
set ^regions("Охотский район") = 6717
1919
set ^regions("Тугуро-Чумиканский район") = 1972
@@ -33,20 +33,19 @@ ClassMethod Populate() As %Status
3333
set ^regions("Нанайский район") = 16332
3434
set ^regions("Советско-Гаванский район") = 40051
3535
set ^regions("Хабаровск") = 611160
36-
36+
3737
set key = $order(^regions(""))
3838
while (key '= "") {
3939
set obj = ##class(Region).%New()
4040
set obj.Key = key
4141
set obj.Name = key
4242
set obj.Population = ^regions(key)
4343
set sc2 = obj.%Save()
44-
44+
4545
set key = $order(^regions(key))
4646
}
47-
47+
4848
quit $$$ADDSC(sc1, sc2)
4949
}
5050

5151
}
52-

src/RF/PERM/Utils.cls

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class RF.PERM.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("PERMCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("PERMCube",0)
88
}
99

1010
ClassMethod Populate() As %Status
@@ -63,7 +63,7 @@ ClassMethod ImportXData(className As %String, xDataName As %String) As %Status
6363
}
6464

6565
write !,"Import - "_itemsCount_" objects of class "_className
66-
66+
6767
Quit $$$OK
6868
}
6969

@@ -434,4 +434,3 @@ XData ParameterXData
434434
}
435435

436436
}
437-

src/RF/SAKH/Utils.cls

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class RF.SAKH.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("SAKHCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("SAKHCube",0)
88
}
99

1010
ClassMethod Populate()
@@ -20,4 +20,3 @@ ClassMethod Populate()
2020
}
2121

2222
}
23-

src/UA/Utils.cls

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class UA.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("UACube")
7+
do ##class(%DeepSee.Utils).%BuildCube("UACube",0)
88
}
99

1010
ClassMethod Populate() As %Status
@@ -64,7 +64,7 @@ ClassMethod ImportXData(className As %String, xDataName As %String) As %Status
6464
}
6565

6666
write !,"Import - "_itemsCount_" objects of class "_className
67-
67+
6868
Quit $$$OK
6969
}
7070

@@ -10473,4 +10473,3 @@ XData ParameterXData
1047310473
}
1047410474

1047510475
}
10476-

src/UA21/Utils.cls

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ Class UA21.Utils
55
ClassMethod Setup()
66
{
77
do ..Populate()
8-
do ##class(%DeepSee.Utils).%BuildCube("UA21Cube")
8+
do ##class(%DeepSee.Utils).%BuildCube("UA21Cube",0)
99
}
1010

1111
ClassMethod Populate() As %Status
1212
{
1313
do ##class(UA21.Region).%KillExtent()
1414
do ##class(UA21.District).%KillExtent()
15-
15+
1616
set sql = "CALL %SQL_Util.CSV(,,?,?)"
1717

1818
set proc = ##class(%SQL.Statement).%ExecDirect(,sql, ..GetXData(,"Regions"), $c(9))
@@ -31,7 +31,7 @@ ClassMethod Populate() As %Status
3131
do:rs.region'="" obj.regionSetObjectId(##class(Region).getId(rs.region))
3232
$$$TOE(sc, obj.%Save())
3333
}
34-
34+
3535
kill stream, stream3
3636

3737
quit $$$OK
@@ -40,12 +40,12 @@ ClassMethod Populate() As %Status
4040
ClassMethod GetXData(class = {$classname()}, xData) As %Stream.FileCharacter
4141
{
4242
set stream = ##class(%Dictionary.XDataDefinition).IDKEYOpen(class, xData).Data
43-
43+
4444
set stream2 = ##class(%Stream.FileCharacter).%New()
4545
set stream2.TranslateTable = "UTF8"
4646
do stream2.CopyFrom(stream)
4747
kill stream
48-
48+
4949
quit stream2
5050
}
5151

@@ -223,4 +223,4 @@ UA74080000000030554 Прилуцький район, Чернігівська о
223223
UA74100000000047140 Чернігівський район, Чернігівська область 451430 27
224224
}
225225

226-
}
226+
}

src/UK/Utils.cls

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Class UK.Utils
44
ClassMethod Setup()
55
{
66
do ..Populate()
7-
do ##class(%DeepSee.Utils).%BuildCube("UKCube")
7+
do ##class(%DeepSee.Utils).%BuildCube("UKCube",0)
88
}
99

1010
ClassMethod Populate() As %Status
@@ -64,7 +64,7 @@ ClassMethod ImportXData(className As %String, xDataName As %String) As %Status
6464
}
6565

6666
write !,"Import - "_itemsCount_" objects of class "_className
67-
67+
6868
Quit $$$OK
6969
}
7070

@@ -1258,4 +1258,3 @@ XData ParameterXData
12581258
}
12591259

12601260
}
1261-

src/USA/Utils.cls

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ClassMethod Setup()
66
{
77
do ..Populate()
88
do ##class(USA.Elections).%BuildIndices()
9-
do ##class(%DeepSee.Utils).%BuildCube("USCube")
9+
do ##class(%DeepSee.Utils).%BuildCube("USCube",0)
1010
do ##class(USA.BI.USCube).TermListSetup()
1111
}
1212

@@ -174289,4 +174289,3 @@ XData ParameterValueXData
174289174289
}
174290174290

174291174291
}
174292-

0 commit comments

Comments
 (0)