gpt4 book ai didi

postgresql - 添加到 postgresql 后的 Clojure 更改日期

转载 作者:行者123 更新时间:2023-11-29 12:17:31 24 4
gpt4 key购买 nike

我在使用 clojure 和 postgresql 时遇到了问题。

例如,当我将“2017-06-27”插入到数据库(日期格式列)时,它会保存“2017-06-26”,当我选择此结果时,返回的对象是#inst“2017-06” -28T03:00:00.000-00:00"

最奇怪的是,当我在本地机器上运行测试时会发生这种情况,因为我已经创建了一个 docker 设置并且相同的代码可以完美运行。

代码如下:

(ns balances.db
(:require [clj-time.coerce :as c]
[clj-time.format :as f]))

; Function to convert data objects from queries to string
(defn db-to-str [date]
(f/unparse (f/formatters :date) (c/from-sql-date date))
)

; Function to convert string to data objetcs that can be inserted in db
(defn str-to-db [date]
(c/to-sql-date date)
)

(ns balances.operation
(:require [clojure.java.jdbc :as jdbc]
[balances.db :refer [db-spec]]))

(defn create-operation [accountid amount description operationdate]
(jdbc/insert! db-spec :operations {
:accountid accountid
:amount amount
:description description
:operationdate operationdate
})
)

(ns balances.operation-test
(:use clojure.test
ring.mock.request
balances.core-test)
(:require [balances.operation :as operation]
[balances.db :as db]))

(use-fixtures :each db/clear-db-fixture)

(deftest operation
(testing "create operation"
(let [op (first (operation/create-operation 1 100 "Test operation" (db/str-to-db "2017-06-27")))]
(is (= "2017-06-27" (db/db-to-str (op :operationdate))))
)
)
)

在本地环境下,create-operation 测试失败,返回:

expected: (= "2017-06-27" (db/db-to-str (op :operationdate)))
actual: (not (= "2017-06-27" "2017-06-26"))

在 docker 环境下测试通过。

最佳答案

听起来您的本地环境与您的数据库和 docker 环境具有不同的区域设置和/或时区。

在每个环境中打开一个 Clojure REPL 并检查 JVM Locale 的设置:

(str (java.util.Locale/getDefault))

同时在每个环境(bash?)上打开一个终端 shell 并键入 date 以查看操作系统时区的设置。

如果其中任何一个不同,那么您就会知道您需要同步它们并更正至少一个 JVM 或操作系统环境以使用相同的时区和语言环境。

关于postgresql - 添加到 postgresql 后的 Clojure 更改日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44837624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com