Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed lookup in schema.R
  • Loading branch information
Oscar D. Lara Yejas committed Nov 10, 2015
commit a031aed7ee65a29137f09a61e7cc13fafdcaee10
2 changes: 1 addition & 1 deletion R/pkg/R/schema.R
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ structField.jobj <- function(x) {
}

checkType <- function(type) {
if (type %in% names(PRIMITIVE_TYPES)) {
if (!is.null(PRIMITIVE_TYPES[[type]])) {
return()
} else {
# Check complex types
Expand Down