Skip to content

Commit

Permalink
enh(tables query): allow fetching 2048 rows on transient db (#8258)
Browse files Browse the repository at this point in the history
Co-authored-by: Henry Fontanier <henry@dust.tt>
  • Loading branch information
fontanierh and Henry Fontanier authored Oct 26, 2024
1 parent 080f838 commit 5fdf770
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/sqlite_workers/sqlite_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl From<anyhow::Error> for SqliteDatabaseError {
}
}

const MAX_ROWS: usize = 128;
const MAX_ROWS: usize = 2048;

impl SqliteDatabase {
pub fn new() -> Self {
Expand Down
2 changes: 1 addition & 1 deletion front/lib/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const DustProdActionRegistry = createActionRegistry({
workspaceId: PRODUCTION_DUST_APPS_WORKSPACE_ID,
appId: "b4f205e453",
appHash:
"d2bfd8d38ad3fa5f71fb7c95cdd9eed158ae3b25f737cb27b8fa3e2d344388ce",
"59b0d9aa49ed9232f88f3ac1cd260ae25e0cd68e0622058c87cd4a42edce18da",
appVaultId: PRODUCTION_DUST_APPS_VAULT_ID,
},
config: {
Expand Down

0 comments on commit 5fdf770

Please sign in to comment.