(self)
| 136 | @property |
| 137 | @lru_cache() |
| 138 | def field_metas(self) -> List[Dict[str, str]]: |
| 139 | duckdb.register("pygwalker_mid_table", self._duckdb_df) |
| 140 | result = duckdb.query("SELECT * FROM pygwalker_mid_table LIMIT 1") |
| 141 | data = result.fetchone() |
| 142 | return get_data_meta_type(dict(zip(result.columns, data))) if data else [] |
| 143 | |
| 144 | @property |
| 145 | @lru_cache() |
nothing calls this directly
no test coverage detected