Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion chdb_course/lab_2.2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ aws s3 cp \
s3://ookla-open-data/parquet/performance/type=mobile/year=2024/quarter=2/2024-04-01_performance_mobile_tiles.parquet .

-- Step 3:
arrow_table = pq.read_table("./2024-04-01_performance_mobile_tiles.parquet"
import pyarrow.parquet as pq
arrow_table = pq.read_table("./2024-04-01_performance_mobile_tiles.parquet")

-- Step 4:
chdb.query("""
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
chdb.query("""
import chdb
chdb.query("""

Expand Down