You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found out that the limit for queries to databases is defaulted on 100 in the code. On: Rath\packages\rath-client\src\pages\dataConnection\database\form\utils.tsx. This can be changed by writing a query manually and changing the limit clause, but for unexperienced users this could be difficult since there is no interface to change it when creating the connection to a database. What i manage was to change it in the code.
I found out that the limit for queries to databases is defaulted on 100 in the code. On: Rath\packages\rath-client\src\pages\dataConnection\database\form\utils.tsx. This can be changed by writing a query manually and changing the limit clause, but for unexperienced users this could be difficult since there is no interface to change it when creating the connection to a database. What i manage was to change it in the code.
ReturnType<typeof fetchTableDetail> => { const payload: Parameters<typeof fetchTableDetail>[1] = { uri: params.connectUri, sourceType: params.sourceType, table: page.path.at(-1)?.key ?? null, rowsNum: '1000', credentials: config.credentials === 'json' ? params.credentials : undefined, }
Can an interfase or option be added when creating the connection to select the limit?
The text was updated successfully, but these errors were encountered: