Browse Source

feat(nocodb): add timestamptz

pull/5505/head
Wing-Kam Wong 1 year ago
parent
commit
13b93eb826
  1. 3
      packages/nocodb/src/db/formulav2/formulaQueryBuilderv2.ts

3
packages/nocodb/src/db/formulav2/formulaQueryBuilderv2.ts

@ -549,7 +549,8 @@ async function _formulaQueryBuilder(
};
} else if (
knex.clientType() === 'pg' &&
col.dt !== 'timestamp with time zone'
col.dt !== 'timestamp with time zone' &&
col.dt !== 'timestamptz'
) {
aliasToColumn[col.id] = async (): Promise<any> => {
return {

Loading…
Cancel
Save