Skip to content

Commit accc0fa

Browse files
committed
upgrade to beta8
1 parent 1ad5c09 commit accc0fa

4 files changed

Lines changed: 6 additions & 9 deletions

File tree

cloudformation/03-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Resources:
4343
Environment:
4444
Variables:
4545
JAVA_TOOL_OPTIONS: '--add-opens=java.base/java.nio=ALL-UNNAMED -Dio.netty.tryReflectionSetAccessible=true'
46-
XTDB_VERSION: '2.0.0-beta7'
46+
XTDB_VERSION: '2.0.0-beta8'
4747

4848
SSMPlayLambdaName:
4949
Type: AWS::SSM::Parameter

deps.edn

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
{org.clojure/clojure {:mvn/version "1.12.0"}
55

66
;; XTDB dependencies
7-
com.xtdb/xtdb-api {:mvn/version "2.0.0-beta7"}
8-
com.xtdb/xtdb-jdbc {:mvn/version "2.0.0-beta7"}
9-
com.xtdb/xtdb-core {:mvn/version "2.0.0-beta7"}
7+
com.xtdb/xtdb-api {:mvn/version "2.0.0-beta8"}
8+
com.xtdb/xtdb-core {:mvn/version "2.0.0-beta8"}
109

1110
org.postgresql/postgresql {:mvn/version "42.7.4"}
1211
com.github.seancorfield/next.jdbc {:mvn/version "1.3.939"}

src/clj/xt_play/transactions.clj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
[clojure.instant :refer [read-instant-date]]
44
[clojure.tools.logging :as log]
55
[xt-play.util :as util]
6-
[xt-play.xtdb :as xtdb]
7-
[xtdb.next.jdbc :as xt-jdbc]))
6+
[xt-play.xtdb :as xtdb]))
87

98
(defn- dml? [statement]
109
(when statement
@@ -115,8 +114,7 @@
115114
v))
116115

117116
(defn- xform-result [result]
118-
(let [columns (mapv xt-jdbc/->sql-col
119-
(keys (first result)))]
117+
(let [columns (keys (first result))]
120118
(into [columns]
121119
(mapv
122120
(fn [row]

test/cljs/xt_play/model/run_test.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[xt-play.model.tx-batch :as batch]))
66

77
(def app-db
8-
{:version "2.0.0-beta7",
8+
{:version "2.0.0-beta8",
99
:type :sql,
1010
:query "SELECT *, _valid_from FROM docs",
1111
::batch/list [::batch/tx5],

0 commit comments

Comments
 (0)