Skip to content

Commit e84aeae

Browse files
committed
Fixed query typo
1 parent 53da42e commit e84aeae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fixtures/nodejs-hybrid-app/src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@ async function testPostgresLibrary(env: Env, ctx: Context) {
209209
database: env.DB_NAME,
210210
});
211211
await client.connect();
212-
const result = await client.query(`SELECT * FROM rnacen.rnc_databas LIMIT 5`);
212+
const result = await client.query(
213+
`SELECT * FROM rnacen.rnc_database LIMIT 5`
214+
);
213215
// Return the first row as JSON
214216
const resp = new Response(JSON.stringify(result.rows[0]), {
215217
headers: { "Content-Type": "application/json" },

0 commit comments

Comments
 (0)