Skip to content

Commit e5bd6fd

Browse files
committed
Fix table name
1 parent 1184c07 commit e5bd6fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

immudb-node-showcase/src/sql-showcase.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async function sqlSchowcase() {
7676
console.log('insertTestTableFirstPK:', insertTestTableFirstPK)
7777
console.log('insertTestTableUpdatedRowsCount:', insertTestTableUpdatedRowsCount)
7878

79-
const res = await client.sqlQuery({ sql: 'SELECT * FROM test_table' })
79+
const res = await client.sqlQuery({ sql: 'SELECT * FROM testtable' })
8080
for await (let row of res) {
8181
console.log(row);
8282
}

0 commit comments

Comments
 (0)