File tree 1 file changed +10
-7
lines changed
1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
- ## import os
2
1
import json
2
+
3
3
import chdb
4
4
5
- def lambda_handler (event , context ):
6
- query = event ['query' ] or "SELECT version()"
7
- format = event ['default_format' ] or "JSONCompact"
8
- res = chdb .query (query , format )
9
- out = json .loads (res .data ())
5
+
6
+ def handler (event , context ):
7
+ if "requestContext" in event :
8
+ event = json .loads (event ["body" ])
9
+ query = event ["query" ] if "query" in event else "SELECT version()"
10
+ format = event ["default_format" ] if "default_format" in event else "JSONCompact"
11
+
12
+ res = chdb .query (query , format ).data ()
10
13
return {
11
14
"statusCode" : 200 ,
12
15
"headers" : {
13
16
"Content-Type" : "application/json"
14
17
},
15
- "body" : json .dumps (out )
18
+ "body" : str ( res ) if not isinstance ( res , ( dict , list )) else json .dumps (res ),
16
19
}
You can’t perform that action at this time.
0 commit comments