Use json instead of jsonb for PG 9.3 compat.

pull/414/head
Jack Christensen 2018-04-14 10:02:08 -05:00
parent 8e9b095ce0
commit 1fbd6977e1
1 changed files with 1 additions and 1 deletions

View File

@ -1475,7 +1475,7 @@ func TestScanJSONIntoJSONRawMessage(t *testing.T) {
var msg json.RawMessage
err := db.QueryRow("select '{}'::jsonb").Scan(&msg)
err := db.QueryRow("select '{}'::json").Scan(&msg)
if err != nil {
t.Fatalf("QueryRow / Scan failed: %v", err)
}