donnyb commited on
Commit
b7ee991
·
1 Parent(s): d1a0183
Files changed (2) hide show
  1. flights-10m.parquet +3 -0
  2. main.py +1 -1
flights-10m.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61cb81969e94990d5c0335c982225b38730b61dc5d9178e9f352903d09335dce
3
+ size 39741621
main.py CHANGED
@@ -25,7 +25,7 @@ app = FastAPI()
25
 
26
  # setup global connection to the database with a table
27
  con = duckdb.connect()
28
- con.query("""CREATE TABLE flights AS FROM 'flights-30m.parquet'""")
29
 
30
 
31
  @app.get("/query/{sql_query:path}")
 
25
 
26
  # setup global connection to the database with a table
27
  con = duckdb.connect()
28
+ con.query("""CREATE TABLE flights AS FROM 'flights-10m.parquet'""")
29
 
30
 
31
  @app.get("/query/{sql_query:path}")