Fix handling of the Postgres money field.
This commit is contained in:
parent
d20146ecaf
commit
76a68a12f0
|
@ -300,11 +300,9 @@ class InternalBuilder {
|
||||||
const columnSchema = schema[column]
|
const columnSchema = schema[column]
|
||||||
|
|
||||||
if (this.SPECIAL_SELECT_CASES.POSTGRES_MONEY(columnSchema)) {
|
if (this.SPECIAL_SELECT_CASES.POSTGRES_MONEY(columnSchema)) {
|
||||||
// TODO: figure out how to express this safely without string
|
return this.knex.raw(`??::money::numeric as ??`, [
|
||||||
// interpolation.
|
|
||||||
return this.knex.raw(`??::money::numeric as "${field}"`, [
|
|
||||||
this.rawQuotedIdentifier([table, column].join(".")),
|
this.rawQuotedIdentifier([table, column].join(".")),
|
||||||
field,
|
this.knex.raw(this.quote(field)),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -314,8 +312,9 @@ class InternalBuilder {
|
||||||
|
|
||||||
// TODO: figure out how to express this safely without string
|
// TODO: figure out how to express this safely without string
|
||||||
// interpolation.
|
// interpolation.
|
||||||
return this.knex.raw(`CONVERT(varchar, ??, 108) as "${field}"`, [
|
return this.knex.raw(`CONVERT(varchar, ??, 108) as ??`, [
|
||||||
this.rawQuotedIdentifier(field),
|
this.rawQuotedIdentifier(field),
|
||||||
|
this.knex.raw(this.quote(field)),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import * as setup from "../api/routes/tests/utilities"
|
import * as setup from "../api/routes/tests/utilities"
|
||||||
import { Datasource, FieldType } from "@budibase/types"
|
import { Datasource, FieldType, Table } from "@budibase/types"
|
||||||
import _ from "lodash"
|
import _ from "lodash"
|
||||||
import { generator } from "@budibase/backend-core/tests"
|
import { generator } from "@budibase/backend-core/tests"
|
||||||
import {
|
import {
|
||||||
|
@ -229,4 +229,54 @@ describe("postgres integrations", () => {
|
||||||
).toBeUndefined()
|
).toBeUndefined()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe.only("money field 💰", () => {
|
||||||
|
const tableName = "moneytable"
|
||||||
|
let table: Table
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
await client.raw(`
|
||||||
|
CREATE TABLE ${tableName} (
|
||||||
|
id serial PRIMARY KEY,
|
||||||
|
price money
|
||||||
|
)
|
||||||
|
`)
|
||||||
|
const response = await config.api.datasource.fetchSchema({
|
||||||
|
datasourceId: datasource._id!,
|
||||||
|
})
|
||||||
|
table = response.datasource.entities![tableName]
|
||||||
|
})
|
||||||
|
|
||||||
|
it("should be able to import a money field", async () => {
|
||||||
|
expect(table).toBeDefined()
|
||||||
|
expect(table?.schema.price.type).toBe(FieldType.NUMBER)
|
||||||
|
})
|
||||||
|
|
||||||
|
it("should be able to search a money field", async () => {
|
||||||
|
await config.api.row.bulkImport(table._id!, {
|
||||||
|
rows: [{ price: 200 }, { price: 300 }],
|
||||||
|
})
|
||||||
|
|
||||||
|
const { rows } = await config.api.row.search(table._id!, {
|
||||||
|
query: {
|
||||||
|
equal: {
|
||||||
|
price: 200,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
expect(rows).toHaveLength(1)
|
||||||
|
expect(rows[0].price).toBe("200.00")
|
||||||
|
})
|
||||||
|
|
||||||
|
it("should be able to update a money field", async () => {
|
||||||
|
let row = await config.api.row.save(table._id!, { price: 200 })
|
||||||
|
expect(row.price).toBe("200.00")
|
||||||
|
|
||||||
|
row = await config.api.row.save(table._id!, { ...row, price: 300 })
|
||||||
|
expect(row.price).toBe("300.00")
|
||||||
|
|
||||||
|
row = await config.api.row.save(table._id!, { ...row, price: "400.00" })
|
||||||
|
expect(row.price).toBe("400.00")
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue