Skip to content

Commit

Permalink
Merge pull request #14931 from Budibase/fix-money-field
Browse files Browse the repository at this point in the history
Fix handling of the Postgres money field.
  • Loading branch information
samwho authored Oct 31, 2024
2 parents bbf8f2b + 91dfa9a commit 94de048
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 6 deletions.
9 changes: 4 additions & 5 deletions packages/backend-core/src/sql/sql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,9 @@ class InternalBuilder {
const columnSchema = schema[column]

if (this.SPECIAL_SELECT_CASES.POSTGRES_MONEY(columnSchema)) {
// TODO: figure out how to express this safely without string
// interpolation.
return this.knex.raw(`??::money::numeric as "${field}"`, [
return this.knex.raw(`??::money::numeric as ??`, [
this.rawQuotedIdentifier([table, column].join(".")),
field,
this.knex.raw(this.quote(field)),
])
}

Expand All @@ -314,8 +312,9 @@ class InternalBuilder {

// TODO: figure out how to express this safely without string
// interpolation.
return this.knex.raw(`CONVERT(varchar, ??, 108) as "${field}"`, [
return this.knex.raw(`CONVERT(varchar, ??, 108) as ??`, [
this.rawQuotedIdentifier(field),
this.knex.raw(this.quote(field)),
])
}

Expand Down
52 changes: 51 additions & 1 deletion packages/server/src/integration-test/postgres.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
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 { generator } from "@budibase/backend-core/tests"
import {
Expand Down Expand Up @@ -229,4 +229,54 @@ describe("postgres integrations", () => {
).toBeUndefined()
})
})

describe("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")
})
})
})

0 comments on commit 94de048

Please sign in to comment.