Skip to content

Commit

Permalink
ScalarDB/Fix type-mismatch operation on val column in elle-append (
Browse files Browse the repository at this point in the history
…#123)

* Fix inconsistent types of `val` in elle-append

* Remove unused import

* fix the val type in the schema

---------

Co-authored-by: yito88 <[email protected]>
  • Loading branch information
komamitsu and yito88 authored Feb 28, 2024
1 parent be76b87 commit 03670d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scalardb/src/scalardb/elle_append.clj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
(def ^:const SCHEMA {:transaction true
:partition-key [ID]
:clustering-key []
:columns {(keyword ID) "INT" (keyword VALUE) "INT"}})
:columns {(keyword ID) "INT" (keyword VALUE) "TEXT"}})

(defn prepare-get
[table id]
Expand Down

0 comments on commit 03670d0

Please sign in to comment.