We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53da42e commit e84aeaeCopy full SHA for e84aeae
fixtures/nodejs-hybrid-app/src/index.ts
@@ -209,7 +209,9 @@ async function testPostgresLibrary(env: Env, ctx: Context) {
209
database: env.DB_NAME,
210
});
211
await client.connect();
212
- const result = await client.query(`SELECT * FROM rnacen.rnc_databas LIMIT 5`);
+ const result = await client.query(
213
+ `SELECT * FROM rnacen.rnc_database LIMIT 5`
214
+ );
215
// Return the first row as JSON
216
const resp = new Response(JSON.stringify(result.rows[0]), {
217
headers: { "Content-Type": "application/json" },
0 commit comments