Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/altertable_flightsql/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ def __init__(
username: str,
password: str,
*,
catalog: Optional[str] = "altertable",
schema: Optional[str] = "main",
catalog: Optional[str] = None,
schema: Optional[str] = None,
host: str = "flight.altertable.ai",
port: int = 443,
tls: bool = True,
Expand All @@ -119,8 +119,12 @@ def __init__(
Args:
username: Altertable username (required).
password: Altertable password (required).
catalog: Default catalog name (default: "altertable").
schema: Default schema name (default: "main").
catalog: Default catalog for the session. When ``None`` (default),
the server attaches every catalog the authenticated user is
authorized for. Pass an explicit name to bind the session to a
single catalog.
schema: Default schema for unqualified table references. When
``None`` (default), no schema is pre-selected.
host: Altertable server hostname (default: "flight.altertable.ai").
port: Server port (default: 443).
tls: Whether to use TLS/SSL (default: True).
Expand Down
Loading