Problem
Currently, ExportSource::Table and ImportBuilder always use unqualified table names.
In multi-schema environments or when the default schema is insufficient, this prevents specifying the schema explicitly. Using a schema now requires executing an OPEN SCHEMA statement before performing operations on the table.
Proposed Solution
- Allow an optional schema (Option<&str>) for ExportSource::Table
- Update ImportBuilder to include the schema if specified, resulting in queries like SCHEMA.TABLE.
- Preserve backward compatibility — if no schema is provided, behavior remains unchanged.