Wei Wei

Results 2 issues of Wei Wei

Currently an empty ALTER TYPE ddl like ``` ALTER TYPE Foo {}; ``` will be re-generated by codegen module as ``` ALTER TYPE FOO; ``` , which is invalid syntax....

I found that the very first call to a pyfunction which returns PyDataFrame has a 100ms lag. Here is a minimal reproducible example: > extension ```rust use pyo3_polars::PyDataFrame; use pyo3::prelude::*;...