File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed
Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -48,22 +48,22 @@ COMPLEX_TYPES <- list(
4848DATA_TYPES <- as.environment(c(as.list(PRIMITIVE_TYPES ), COMPLEX_TYPES ))
4949
5050SHORT_TYPES <- as.environment(list (
51- " character" = " chr" ,
52- " logical" = " logi" ,
53- " POSIXct" = " POSIXct" ,
54- " integer" = " int" ,
55- " numeric" = " num" ,
56- " raw" = " raw" ,
57- " Date" = " Date" ,
58- " map" = " map" ,
59- " array" = " array" ,
60- " struct" = " struct"
51+ " character" = " chr" ,
52+ " logical" = " logi" ,
53+ " POSIXct" = " POSIXct" ,
54+ " integer" = " int" ,
55+ " numeric" = " num" ,
56+ " raw" = " raw" ,
57+ " Date" = " Date" ,
58+ " map" = " map" ,
59+ " array" = " array" ,
60+ " struct" = " struct"
6161))
6262
6363# An environment for mapping R to Scala, names are R types and values are Scala types.
6464rToSQLTypes <- as.environment(list (
65- " integer" = " integer" , # in R, integer is 32bit
66- " numeric" = " double" , # in R, numeric == double which is 64bit
67- " double" = " double" ,
65+ " integer" = " integer" , # in R, integer is 32bit
66+ " numeric" = " double" , # in R, numeric == double which is 64bit
67+ " double" = " double" ,
6868 " character" = " string" ,
69- " logical" = " boolean" ))
69+ " logical" = " boolean" ))
You can’t perform that action at this time.
0 commit comments