Skip to content

Commit f3db562

Browse files
committed
Set R includes to get the right collate order.
This prevents tools like devtools::document creating invalid collate orders
1 parent 23d5f88 commit f3db562

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

R/pkg/DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ License: Apache License (== 2.0)
1717
Collate:
1818
'generics.R'
1919
'jobj.R'
20-
'SQLTypes.R'
2120
'RDD.R'
2221
'pairRDD.R'
22+
'SQLTypes.R'
2323
'column.R'
2424
'group.R'
2525
'DataFrame.R'
2626
'SQLContext.R'
27+
'backend.R'
2728
'broadcast.R'
29+
'client.R'
2830
'context.R'
2931
'deserialize.R'
3032
'serialize.R'
3133
'sparkR.R'
32-
'backend.R'
33-
'client.R'
3434
'utils.R'
3535
'zzz.R'

R/pkg/R/DataFrame.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# DataFrame.R - DataFrame class and methods implemented in S4 OO classes
1919

20-
#' @include jobj.R SQLTypes.R RDD.R pairRDD.R column.R group.R
20+
#' @include generics.R jobj.R SQLTypes.R RDD.R pairRDD.R column.R group.R
2121
NULL
2222

2323
setOldClass("jobj")

R/pkg/R/column.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# Column Class
1919

20-
#' @include generics.R jobj.R
20+
#' @include generics.R jobj.R SQLTypes.R
2121
NULL
2222

2323
setOldClass("jobj")

R/pkg/R/group.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717

1818
# group.R - GroupedData class and methods implemented in S4 OO classes
1919

20+
#' @include generics.R jobj.R SQLTypes.R column.R
21+
NULL
22+
2023
setOldClass("jobj")
2124

2225
#' @title S4 class that represents a GroupedData

R/pkg/R/jobj.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
# References to objects that exist on the JVM backend
1919
# are maintained using the jobj.
2020

21+
#' @include generics.R
22+
NULL
23+
2124
# Maintain a reference count of Java object references
2225
# This allows us to GC the java object when it is safe
2326
.validJobjs <- new.env(parent = emptyenv())

R/pkg/R/pairRDD.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#
1717

1818
# Operations supported on RDDs contains pairs (i.e key, value)
19+
#' @include generics.R jobj.R RDD.R
20+
NULL
1921

2022
############ Actions and Transformations ############
2123

0 commit comments

Comments
 (0)