Browse Source

chore(nocodb): revert limit changes

pull/6796/head
աɨռɢӄաօռɢ 1 year ago
parent
commit
c57471fdb9
  1. 6
      packages/nocodb/src/db/BaseModelSql.ts

6
packages/nocodb/src/db/BaseModelSql.ts

@ -74,9 +74,9 @@ class BaseModelSql extends BaseModel {
this.manyToManyRelations = manyToMany; this.manyToManyRelations = manyToMany;
this.virtualColumns = v; this.virtualColumns = v;
this.config = { this.config = {
limitDefault: Math.max(+process.env.DB_QUERY_LIMIT_DEFAULT || 25, 1), limitDefault: process.env.DB_QUERY_LIMIT_DEFAULT || 25,
limitMin: Math.max(+process.env.DB_QUERY_LIMIT_MIN || 1, 1), limitMax: process.env.DB_QUERY_LIMIT_MAX || 100,
limitMax: Math.max(+process.env.DB_QUERY_LIMIT_MAX || 1000, 1), limitMin: process.env.DB_QUERY_LIMIT_MIN || 1,
log: false, log: false,
explain: false, explain: false,
hasManyMax: 5, hasManyMax: 5,

Loading…
Cancel
Save