Skip to content

Commit feced75

Browse files
authored
Update lambda.py
1 parent 92d7c0c commit feced75

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

lambda.py

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
## import os
21
import json
2+
33
import chdb
44

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()
1013
return {
1114
"statusCode": 200,
1215
"headers": {
1316
"Content-Type": "application/json"
1417
},
15-
"body": json.dumps(out)
18+
"body": str(res) if not isinstance(res, (dict, list)) else json.dumps(res),
1619
}

0 commit comments

Comments
 (0)