(self, context: clmn.AsyncTransformerContext)
| 2845 | |
| 2846 | @contextualized_operator |
| 2847 | def _async_transformer(self, context: clmn.AsyncTransformerContext) -> Table: |
| 2848 | columns = { |
| 2849 | name: clmn.ColumnWithoutExpression(context, context.universe, dtype) |
| 2850 | for name, dtype in context.schema._dtypes().items() |
| 2851 | } |
| 2852 | return Table(_columns=columns, _context=context) |
| 2853 | |
| 2854 | @trace_user_frame |
| 2855 | @contextualized_operator |
no test coverage detected