Bugfixes:
Fixed error about missing checkmate
package.
Fixed error about targetDialect
types not matching
(character != factor) on older R versions (< 4).
Fixed warning about deprecated icon in Shiny app.
Changes:
Bugfixes:
Fixed translation of CREATE TABLE
statements
specifying a field can be NULL on BigQuery.
Fixes translation of CAST('20000101' AS DATE)
on
Oracle.
Changes:
Added additional logic for INSERT
statements on
Spark, including the new sparkHandleInsert()
function.
Supporting DROP TABLE IF EXISTS
translation across
all dialects.
Adding translation rule for CAST(... AS DATE)
for
SQLite.
Added snakeCaseToCamelCaseNames()
and
camelCaseToSnakeCaseNames()
functions.
Changes:
Added rules for translating implicit string concatenation to BigQuery.
Added getTempTablePrefix()
function.
Changes:
listSupportedDialects()
function.Bugfixes:
DATEFROMPARTS
and DATETIMEFROMPARTS
translation for newer SQLite versions by first converting to
INT
before converting to TEXT
.Changes:
Changes:
Added Apache Spark dialect (“spark”).
Adding automated check whether correct Java Jar file is loaded, throws warning if not.
Adding translation of CEILING()
for SQLite.
Bugfixes:
Fixing setting of global tempEmulationSchema
option.
Workaround for SUBSTR()
function bug in newer
versions of SQLite (by explicitly casting string to type
STRING
).
Changes:
Deprecating oracleTempSchema
argument in various
functions in favor of tempEmulationSchema
schema, which can
also be set globally using the sqlRenderTempEmulationSchema
option.
Adding translation of DATEDIFF(YEAR, …) and DATEDIFF(MONTH, …) to all dialects.
Updated createRWrapperForSql()
to latest SqlRender
standards.
Bugfixes:
Fixed translation of CTE without FROM or UNION in BigQuery.
Fixed translation of CONVERT(DATE…) in SQLite.
Fixed translation of DATEDIFF with literals in SQLite.
Bugfixes:
Changes:
loadRenderTranslateSql()
cannot find the SQL file in the
specified package.Bugfixes:
On SQLite, DATEADD and CONVERT functions now cast to REAL (used to represent DATE / DATETIME).
On SQLite, DATEADD function now works when amount to add is not a verbatim number.
Changes:
Adding rules for modulus operator for BigQuery.
Deleting UPDATE STATISTICS statement for BigQuery.
Bugfixes:
Changes:
Adding support for Apache Hive LLAP.
Adding functions to convert camelCase to Title Case. (camelCaseToTitleCase)
Changes:
Added rules for SQLite for LEFT and RIGHT functions.
SQLite now dropping schema name when creating and dropping index (as this throws an error if left).
No longer automatically casting literal to TEXT in RedShift CTE. Users are required to do explicit casts instead.
BigQuery insertTable now also uses CTAS hack.
Added translation rules for HASHBYTES.
Bugfixes:
Fixing GETDATE translation for SQLite.
When calling ‘render’, the replacement value can now contain a $ sign. (Previously this caused an error).
isNumeric can now also be applied to numeric fields in Postgres.
Better handling of illegal characters in Impala.
Changes:
Bugfixes:
Changes:
Bugfixes:
Changes:
Major overhaul of BigQuery translation.
Added support for SQLite.
ISNUMERIC translation implemented for Impala, Netezza, and BigQuery.
Performance improvement for Impala temp tables (CREATE TABLE … STORED AS PARQUET).
Adding functions render
and translate
that output strings instead of lists. Deprecating renderSql
and translateSql
.
Added function translateSingleStatement
.
Bugfixes:
Dropping WHERE clause when translating CREATE INDEX for PDW.
Fixed PDW’s equivalent of CREATE TABLE IF NOT EXISTS.
Changes:
Bugfixes:
Changes:
Bugfixes:
Changes:
Improved support for Netezza.
Added random distribution hints for PDW, RedShift, Netezza.
Improved MPP index translation for PDW and Netezza.
Warnings about missing parameters when rendering SQL can now be turned off.
Bugfixes:
Changes:
Better handling of ‘FROM DUAL’ for Oracle.
Improved support for Netezza and Impala.
Changes:
Bigquery support for mismatched string and int arguments in coalesce.
Translate decimal to float for BigQuery.
Created rules to add dummy ‘group by’ for Oracle statements combining ‘case’ and ‘count’ to prevent Oracle from crashing.
Adding ‘UNBOUNDED PRECEDING’ to RedShift windowing functions.
Changes:
Added a Shiny app for developing parameterized SQL, and view how this would be rendered and translated into the various supported dialects.
Added support for Google BigQuery.
Added many more rules for Amazon RedShift, including support for optimization hints.
Added rules for DELETE FROM translation for Impala.
Bugfixes:
Changes:
Bugfixes:
Fixed bug when trying to split SQL where reserved word ‘end’ is used as a field name.
Fixes for Impala translations.
Fixed translation issues for Oracle involving ‘FROM DUAL’.
Added workaround for Oracle bug for intervals greater than 99 days.
Fixed bug when trying to split SQL where last line has comment but no EOL.
Changes:
Added ability to use regular expression in translation patterns. This allowed SELECT TOP n to be translated.
Deprecated sourceDialect argument.
Added translation for CONCAT function with >2 arguments to Oracle (which only allows 2 arguments)
Added hints for translation optimization to massive parallel platforms like RedShift
Throw warnings when translateSql is called with variable names that are not in the SQL
Throw warnings when table names are too long for Oracle
Bugfixes:
Changes:
Bugfixes:
Changes: initial submission to CRAN