dask-contrib / dask-sql

Distributed SQL Engine in Python using Dask
https://dask-sql.readthedocs.io/
MIT License
376 stars 71 forks source link

[BUG] #1338

Open xelinzo007 opened 1 month ago

xelinzo007 commented 1 month ago

The python type string is not implemented (yet) iam geeting error in this code

try: c = Context()

print("------------------------------coloums------------------------------------dataframe----------------------")

    #print(list(df.columns))
    c.create_table("click_integrity_table", df)
    query1=("select date from click_integrity_table limit 10")
    result = c.sql(query1).compute()
    print(result) 
    #query=generate_query(config_obj)
    #print("INFO | Query",query)
except Exception as e:
    print(f"ERROR| In SQL table Creation",str(e))