Skip to content

Commit

Permalink
fix test app
Browse files Browse the repository at this point in the history
  • Loading branch information
glasstiger committed Nov 27, 2023
1 parent 5648bec commit fb1bec1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/testapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,13 @@ async function run() {
.stringColumn('hoppa', 'hi').stringColumn('hopp', 'hello').stringColumn('hippo', 'huhu')
.floatColumn('temperature', 7.1)
.at(1658484765000555000n, 'ns');

console.log('sending:\n' + sender.toBuffer().toString());
await sender.flush();

sender.table('test')
.symbol('location', 'emea').symbol('city', 'miskolc')
.stringColumn('hoppa', 'hello').stringColumn('hippi', 'hello').stringColumn('hippo', 'lalalala')
.floatColumn('temperature', 13.1).intColumn('intcol', 333)
.atNow();

console.log('sending:\n' + sender.toBuffer().toString());
await sender.flush();
}
await sender.close();
Expand Down

0 comments on commit fb1bec1

Please sign in to comment.