File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 5
5
.vscode /
6
6
libchdb.so
7
7
chdb.h
8
+ chdb.hpp
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ describe('chDB Queries', function () {
78
78
79
79
session . query ( "USE testdb; INSERT INTO testtable VALUES (1), (2), (3);" ) ;
80
80
81
- const ret = session . query ( "SELECT * FROM testtable;" , "CSV" ) ;
81
+ const ret = session . query ( "SELECT * FROM testdb. testtable;" , "CSV" ) ;
82
82
console . log ( "Session Query Result:" , ret ) ;
83
83
expect ( ret ) . to . be . a ( 'string' ) ;
84
84
expect ( ret ) . to . include ( '1' ) ;
@@ -93,7 +93,7 @@ describe('chDB Queries', function () {
93
93
} ) ;
94
94
95
95
it ( 'should return result of the query made using bind parameters' , ( ) => {
96
- const ret = session . queryBind ( "SELECT * from testtable where id > {id: UInt32}" , { id : 2 } , "CSV" ) ;
96
+ const ret = session . queryBind ( "SELECT * from testdb. testtable where id > {id: UInt32}" , { id : 2 } , "CSV" ) ;
97
97
console . log ( "Bind Session result:" , ret ) ;
98
98
expect ( ret ) . to . not . include ( '1' ) ;
99
99
expect ( ret ) . to . not . include ( '2' ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cd "$(dirname "$0")"
10
10
11
11
# Get the newest release version
12
12
# LATEST_RELEASE=$(curl --silent "https://api.github.com/repos/chdb-io/chdb/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
13
- LATEST_RELEASE=v2.1.1
13
+ LATEST_RELEASE=v3.3.0
14
14
15
15
# Download the correct version based on the platform
16
16
case " $( uname -s) " in
You can’t perform that action at this time.
0 commit comments