Get the current project schema name from context.
()
| 6 | |
| 7 | |
| 8 | def get_current_project_schema() -> str | None: |
| 9 | """Get the current project schema name from context.""" |
| 10 | return project_schema_context.get() |
| 11 | |
| 12 | |
| 13 | def set_project_schema(schema_name: str) -> Token: |