Skip to content

Commit 52de1d5

Browse files
committed
Remove TSMySQL workaround.
1 parent 265b18e commit 52de1d5

8 files changed

+18
-23
lines changed

DESCRIPTION

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: RMySQL
2-
Version: 0.10.2
2+
Version: 0.10.3
33
Title: Database Interface and MySQL Driver for R
44
Description: Implements DBI-compliant Interface to MySQL and MariaDB Databases.
55
Authors@R: c(person("Jeroen", "Ooms", email = "jeroen.ooms@stat.ucla.edu", role = c("aut", "cre")),
@@ -15,7 +15,7 @@ Imports:
1515
methods
1616
License: GPL-2
1717
URL: https://github.com/rstats-db/rmysql,
18-
https://downloads.mariadb.org/client-native/
18+
https://downloads.mariadb.org/connector-c/
1919
BugReports: https://github.com/rstats-db/rmysql/issues
2020
SystemRequirements: MySQL/MariaDB client headers and libraries, except on
2121
Windows. E.g. libmysqlclient-dev (Debian/Ubuntu), mariadb-devel (Fedora).
@@ -32,6 +32,5 @@ Collate:
3232
'is-valid.R'
3333
'table.R'
3434
'transaction.R'
35-
'zzz_compatibility.R'
3635
Suggests:
3736
testthat

NAMESPACE

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export(mysqlHasDefault)
3030
exportClasses(MySQLConnection)
3131
exportClasses(MySQLDriver)
3232
exportClasses(MySQLResult)
33-
exportClasses(dbObjectId)
3433
exportMethods(SQLKeywords)
3534
exportMethods(dbApply)
3635
exportMethods(dbBegin)

NEWS.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Version 0.10.3
2+
3+
* Fix the RPostgreSQL conflict
4+
5+
* Remove the workaround for the bug in TSMySQL
6+
7+
* Update URL to MariaDB client in DESCRIPTION
8+
19
# Version 0.10.2
210

311
* Backport fixes from Rcpp branch.

R/data-type.R

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#' @include driver.R connection.R
2-
NULL
3-
41
#' Determine the SQL Data Type of an S object
52
#'
63
#' This method is a straight-forward implementation of the corresponding
@@ -19,7 +16,7 @@ setMethod("dbDataType", c("MySQLDriver", "ANY"), function(dbObj, obj) {
1916
})
2017

2118
#' @export
22-
#' @rdname dbDataType-MySQLDriver-method
19+
#' @rdname dbDataType-MySQLDriver-ANY-method
2320
setMethod("dbDataType", c("MySQLConnection", "ANY"), function(dbObj, obj) {
2421
mysqlDataType(obj)
2522
})

R/zzz_compatibility.R

-7
This file was deleted.

RMySQL.Rproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ StripTrailingWhitespace: Yes
1818
BuildType: Package
1919
PackageUseDevtools: Yes
2020
PackageInstallArgs: --no-multiarch --with-keep.source
21-
PackageRoxygenize: rd,collate,namespace
21+
PackageRoxygenize: rd,namespace

man/db-meta.Rd

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
% Generated by roxygen2 (4.1.0): do not edit by hand
2-
% Please edit documentation in R/connection.R, R/zzz_compatibility.R
2+
% Please edit documentation in R/connection.R
33
\docType{methods}
44
\name{db-meta}
55
\alias{db-meta}
66
\alias{dbGetException,MySQLConnection-method}
77
\alias{dbGetInfo,MySQLConnection-method}
88
\alias{dbListResults,MySQLConnection-method}
9-
\alias{dbObjectId-class}
109
\alias{show,MySQLConnection-method}
1110
\alias{summary,MySQLConnection-method}
1211
\title{Database interface meta-data}

man/dbDataType-MySQLDriver-method.Rd renamed to man/dbDataType-MySQLDriver-ANY-method.Rd

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
% Generated by roxygen2 (4.1.0): do not edit by hand
22
% Please edit documentation in R/data-type.R
33
\docType{methods}
4-
\name{dbDataType,MySQLDriver-method}
5-
\alias{dbDataType,MySQLConnection-method}
6-
\alias{dbDataType,MySQLDriver-method}
4+
\name{dbDataType,MySQLDriver,ANY-method}
5+
\alias{dbDataType,MySQLConnection,ANY-method}
6+
\alias{dbDataType,MySQLDriver,ANY-method}
77
\title{Determine the SQL Data Type of an S object}
88
\usage{
9-
\S4method{dbDataType}{MySQLDriver}(dbObj, obj)
9+
\S4method{dbDataType}{MySQLDriver,ANY}(dbObj, obj)
1010

11-
\S4method{dbDataType}{MySQLConnection}(dbObj, obj)
11+
\S4method{dbDataType}{MySQLConnection,ANY}(dbObj, obj)
1212
}
1313
\arguments{
1414
\item{dbObj}{A \code{MySQLDriver} or \code{MySQLConnection}.}

0 commit comments

Comments
 (0)