Handle likes database count as integer
This commit is contained in:
parent
2118d6ba7c
commit
c1679a0c35
@ -5,8 +5,10 @@ import { DatabaseError, InvalidOperationError } from '../errors/general';
|
|||||||
|
|
||||||
export async function getBuildingLikeCount(buildingId: number, t?: ITask<any>): Promise<number> {
|
export async function getBuildingLikeCount(buildingId: number, t?: ITask<any>): Promise<number> {
|
||||||
try {
|
try {
|
||||||
|
// assume that there won't be more likes than Postgres int range and cast to int
|
||||||
|
// otherwise the count is return as a bigint which has less support in noode-postgres
|
||||||
const result = await (t || db).one(
|
const result = await (t || db).one(
|
||||||
'SELECT count(*) as likes FROM building_user_likes WHERE building_id = $1;',
|
'SELECT count(*)::int as likes FROM building_user_likes WHERE building_id = $1;',
|
||||||
[buildingId]
|
[buildingId]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user