dask-sql icon indicating copy to clipboard operation
dask-sql copied to clipboard

[BUG]

Open xelinzo007 opened this issue 1 year ago • 0 comments

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))

xelinzo007 avatar May 28 '24 12:05 xelinzo007