iaminarush
iaminarush
DTDrizzle Team
Created by iaminarush on 9/19/2023 in #help
Initial query after Neon's suspend_compute
What I see if I call the query when the db is awake
Query: select "id", "name", "parent_id" from "categories" limit $1 -- params: [100]
[
{ id: 2, name: 'Test', parentId: null },
{ id: 3, name: 'Test 2', parentId: null }
]
Query: select "id", "name", "parent_id" from "categories" limit $1 -- params: [100]
[
{ id: 2, name: 'Test', parentId: null },
{ id: 3, name: 'Test 2', parentId: null }
]
3 replies
DTDrizzle Team
Created by iaminarush on 9/19/2023 in #help
Initial query after Neon's suspend_compute
I have drizzle's logger on and the initial query show's this in console
Query: select "id", "name", "parent_id" from "categories" limit $1 -- params: [100]
Query: select "id", "name", "parent_id" from "categories" limit $1 -- params: [100]
3 replies