Skip to content

Commit 110b00d

Browse files
resolving conflicts
1 parent ae55f8b commit 110b00d

File tree

3 files changed

+24
-60
lines changed

3 files changed

+24
-60
lines changed

r/R/R6.R

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -295,52 +295,6 @@ date32 <- function() `arrow::Date32`$new(Date32_initialize())
295295
date64 <- function() `arrow::Date64`$new(Date64_initialize())
296296

297297
#' @rdname DataType
298-
299-
#' @export
300-
int8 <- function() `arrow::Int8`$new()
301-
302-
#' @export
303-
int16 <- function() `arrow::Int16`$new()
304-
305-
#' @export
306-
int32 <- function() `arrow::Int32`$new()
307-
308-
#' @export
309-
int64 <- function() `arrow::Int64`$new()
310-
311-
#' @export
312-
uint8 <- function() `arrow::UInt8`$new()
313-
314-
#' @export
315-
uint16 <- function() `arrow::UInt16`$new()
316-
317-
#' @export
318-
uint32 <- function() `arrow::UInt32`$new()
319-
320-
#' @export
321-
uint64 <- function() `arrow::UInt64`$new()
322-
323-
#' @export
324-
float16 <- function() `arrow::Float16`$new()
325-
326-
#' @export
327-
float32 <- function() `arrow::Float32`$new()
328-
329-
#' @export
330-
float64 <- function() `arrow::Float64`$new()
331-
332-
#' @export
333-
boolean <- function() `arrow::Boolean`$new()
334-
335-
#' @export
336-
utf8 <- function() `arrow::Utf8`$new()
337-
338-
#' @export
339-
date32 <- function() `arrow::Date32`$new()
340-
341-
#' @export
342-
date64 <- function() `arrow::Date64`$new()
343-
344298
#' @export
345299
time32 <- function(unit) {
346300
`arrow::Time32`$new(Time32_initialize(unit))
@@ -365,16 +319,6 @@ timestamp <- function(unit, timezone) {
365319
}
366320

367321
#' @rdname DataType
368-
369-
#' @export
370-
time64 <- function(unit) `arrow::Time64`$new(unit)
371-
372-
#' @export
373-
null <- function() `arrow::Null`$new()
374-
375-
#' @export
376-
timestamp <- function(...) `arrow::Timestamp`$new(...)
377-
378322
#' @export
379323
decimal <- function(precision, scale) `arrow::Decimal128Type`$new(Decimal128Type_initialize(precision, scale))
380324

r/data-raw/test.R

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
118
library(tidyverse)
219
library(arrow)
320

r/man/DataType.Rd

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)