You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: NEWS.md
+4
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ Bugfixes:
5
5
6
6
1. On DataBricks, a translation of `DATEADD()` now returns a `DATE` if the input was a `DATE`, to be consistent with other platforms. (Requires input field name to end with '_date')
7
7
8
+
2. When creating emulated temp tables on IRIS, will first attempt to drop (if exist). This follows behavior for Oracle, Spark, and BigQuery.
9
+
10
+
3. Fixing translation of `NEWID()` and `RAND()` on IRIS.
Copy file name to clipboardexpand all lines: inst/csv/replacementPatterns.csv
+3-1
Original file line number
Diff line number
Diff line change
@@ -1385,7 +1385,7 @@ iris,CAST(@a AS varchar) +,CAST(@a AS varchar) ||
1385
1385
iris,+ CAST(@a AS varchar),|| CAST(@a AS varchar)
1386
1386
iris,COUNT_BIG(@a),COUNT(@a)
1387
1387
iris,.dbo.,.
1388
-
iris,CREATE TABLE #@table (@definition),CREATE GLOBAL TEMPORARY TABLE #@table (@definition)
1388
+
iris,CREATE TABLE #@table (@definition),DROP TABLE IF EXISTS #@table; CREATE GLOBAL TEMPORARY TABLE #@table (@definition)
1389
1389
iris,"WITH @a AS (@b), @c CREATE TABLE @d AS @e;","DROP TABLE IF EXISTS #@a;\n CREATE GLOBAL TEMPORARY TABLE #@a AS @b;\n WITH @c CREATE TABLE @d AS @e;\n DROP TABLE IF EXISTS #@a;"
1390
1390
iris,WITH @a AS (@b) CREATE TABLE @c AS SELECT @d;,DROP TABLE IF EXISTS #@a;\n CREATE GLOBAL TEMPORARY TABLE #@a AS @b;\n CREATE TABLE @c AS SELECT @d;\n DROP TABLE IF EXISTS #@a;
1391
1391
iris,"WITH @a AS (@b), @c CREATE GLOBAL TEMPORARY TABLE @d AS @e;","DROP TABLE IF EXISTS #@a;\n CREATE GLOBAL TEMPORARY TABLE #@a AS @b;\n WITH @c CREATE GLOBAL TEMPORARY TABLE @d AS @e;\n DROP TABLE IF EXISTS #@a;"
0 commit comments