File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ async function run() {
1919 // send the data over the authenticated connection
2020 let bday = Date . parse ( '1856-07-10' ) ;
2121 sender
22- . table ( 'inventors ' )
22+ . table ( 'inventors_nodejs ' )
2323 . symbol ( 'born' , 'Austrian Empire' )
2424 . timestampColumn ( 'birthday' , bday , 'ms' ) // epoch in millis
2525 . intColumn ( 'id' , 0 )
2626 . stringColumn ( 'name' , 'Nicola Tesla' )
2727 . at ( Date . now ( ) , 'ms' ) ; // epoch in millis
2828 bday = Date . parse ( '1847-02-11' ) ;
2929 sender
30- . table ( 'inventors ' )
30+ . table ( 'inventors_nodejs ' )
3131 . symbol ( 'born' , 'USA' )
3232 . timestampColumn ( 'birthday' , bday , 'ms' )
3333 . intColumn ( 'id' , 1 )
Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ async function run() {
1919 // send the data over the authenticated and secure connection
2020 let bday = Date . parse ( '1856-07-10' ) ;
2121 sender
22- . table ( 'inventors ' )
22+ . table ( 'inventors_nodejs ' )
2323 . symbol ( 'born' , 'Austrian Empire' )
2424 . timestampColumn ( 'birthday' , bday , 'ms' ) // epoch in millis
2525 . intColumn ( 'id' , 0 )
2626 . stringColumn ( 'name' , 'Nicola Tesla' )
2727 . at ( Date . now ( ) , 'ms' ) ; // epoch in millis
2828 bday = Date . parse ( '1847-02-11' ) ;
2929 sender
30- . table ( 'inventors ' )
30+ . table ( 'inventors_nodejs ' )
3131 . symbol ( 'born' , 'USA' )
3232 . timestampColumn ( 'birthday' , bday , 'ms' )
3333 . intColumn ( 'id' , 1 )
Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ async function run() {
1111 // add rows to the buffer of the sender
1212 let bday = Date . parse ( '1856-07-10' ) ;
1313 sender
14- . table ( 'inventors ' )
14+ . table ( 'inventors_nodejs ' )
1515 . symbol ( 'born' , 'Austrian Empire' )
1616 . timestampColumn ( 'birthday' , bday , 'ms' ) // epoch in millis
1717 . intColumn ( 'id' , 0 )
1818 . stringColumn ( 'name' , 'Nicola Tesla' )
1919 . at ( Date . now ( ) , 'ms' ) ; // epoch in millis
2020 bday = Date . parse ( '1847-02-11' ) ;
2121 sender
22- . table ( 'inventors ' )
22+ . table ( 'inventors_nodejs ' )
2323 . symbol ( 'born' , 'USA' )
2424 . timestampColumn ( 'birthday' , bday , 'ms' )
2525 . intColumn ( 'id' , 1 )
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ async function run() {
4343 let count = 0 ;
4444 await subscribe ( workerData . ticker , async ( tick ) => {
4545 sender
46- . table ( 'prices ' )
46+ . table ( 'prices_nodejs ' )
4747 . symbol ( 'ticker' , tick . ticker )
4848 . floatColumn ( 'price' , tick . price )
4949 . atNow ( ) ;
You can’t perform that action at this time.
0 commit comments