Skip to content

Commit 53da42e

Browse files
committed
Update testPostgresLibrary Psql query to include the FQTN
1 parent 9dff00c commit 53da42e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ 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 rnc_database LIMIT 5`);
212+
const result = await client.query(`SELECT * FROM rnacen.rnc_databas LIMIT 5`);
213213
// Return the first row as JSON
214214
const resp = new Response(JSON.stringify(result.rows[0]), {
215215
headers: { "Content-Type": "application/json" },

0 commit comments

Comments
 (0)