Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use C library #178

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# quote(cynkrathis::use_cmakelists())

cmake_minimum_required(VERSION 3.14)
project(duckdb VERSION 0.1.0)
project(duckdb_r VERSION 0.1.0)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

Expand Down
29 changes: 3 additions & 26 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,35 +1,12 @@
Package: duckdb
Package: duckdbneo
Title: DBI Package for the DuckDB Database Management System
Version: 0.9.2-1
Version: 0.9.2
Authors@R: c(
person("Hannes", "Mühleisen", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-8552-0029")),
person("Mark", "Raasveldt", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0001-5005-6844")),
person("Stichting DuckDB Foundation", role = "cph"),
person("Apache Software Foundation", role = "cph"),
person("PostgreSQL Global Development Group", role = "cph"),
person("The Regents of the University of California", role = "cph"),
person("Cameron Desrochers", role = "cph"),
person("Victor Zverovich", role = "cph"),
person("RAD Game Tools", role = "cph"),
person("Valve Software", role = "cph"),
person("Rich Geldreich", role = "cph"),
person("Tenacious Software LLC", role = "cph"),
person("The RE2 Authors", role = "cph"),
person("Google Inc.", role = "cph"),
person("Facebook Inc.", role = "cph"),
person("Steven G. Johnson", role = "cph"),
person("Jiahao Chen", role = "cph"),
person("Tony Kelman", role = "cph"),
person("Jonas Fonseca", role = "cph"),
person("Lukas Fittl", role = "cph"),
person("Salvatore Sanfilippo", role = "cph"),
person("Art.sy, Inc.", role = "cph"),
person("Oran Agra", role = "cph"),
person("Redis Labs, Inc.", role = "cph"),
person("Melissa O'Neill", role = "cph"),
person("PCG Project contributors", role = "cph")
person("Stichting DuckDB Foundation", role = "cph")
)
Description: The DuckDB project is an embedded analytical data management
system with support for the Structured Query Language (SQL). This
Expand Down
61 changes: 1 addition & 60 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,60 +1 @@
# Generated by roxygen2: do not edit by hand

S3method(as.data.frame,duckdb_relation)
S3method(head,duckdb_relation)
S3method(names,duckdb_relation)
S3method(print,duckdb_explain)
S3method(print,duckdb_expr)
S3method(print,duckdb_relation)
export(duckdb)
export(duckdb_adbc)
export(duckdb_fetch_arrow)
export(duckdb_fetch_record_batch)
export(duckdb_get_substrait)
export(duckdb_get_substrait_json)
export(duckdb_list_arrow)
export(duckdb_prepare_substrait)
export(duckdb_prepare_substrait_json)
export(duckdb_read_csv)
export(duckdb_register)
export(duckdb_register_arrow)
export(duckdb_shutdown)
export(duckdb_unregister)
export(duckdb_unregister_arrow)
export(read_csv_duckdb)
export(simulate_duckdb)
export(translate_duckdb)
exportClasses(duckdb_connection)
exportClasses(duckdb_driver)
exportClasses(duckdb_explain)
exportClasses(duckdb_result)
exportMethods(dbAppendTable)
exportMethods(dbBegin)
exportMethods(dbBind)
exportMethods(dbClearResult)
exportMethods(dbColumnInfo)
exportMethods(dbCommit)
exportMethods(dbConnect)
exportMethods(dbDataType)
exportMethods(dbDisconnect)
exportMethods(dbExistsTable)
exportMethods(dbFetch)
exportMethods(dbGetInfo)
exportMethods(dbGetRowCount)
exportMethods(dbGetRowsAffected)
exportMethods(dbGetStatement)
exportMethods(dbHasCompleted)
exportMethods(dbIsValid)
exportMethods(dbListFields)
exportMethods(dbListTables)
exportMethods(dbQuoteIdentifier)
exportMethods(dbQuoteLiteral)
exportMethods(dbRemoveTable)
exportMethods(dbRollback)
exportMethods(dbSendQuery)
exportMethods(dbWriteTable)
exportMethods(show)
import(DBI)
import(methods)
importFrom(utils,head)
useDynLib(duckdb, .registration = TRUE)
useDynLib(duckdbneo, .registration = TRUE)
46 changes: 0 additions & 46 deletions R/Connection.R

This file was deleted.

138 changes: 0 additions & 138 deletions R/Driver.R

This file was deleted.

Loading