Definition
/**
* Create a table reference.
*
* Supports dot notation for schema-qualified names: "public.users" or explicit schema parameter.
* Double-quoted identifiers preserve dots: '"my.table"' creates a single identifier.
*
* @param string $name Table name (may include schema as "schema.table")
* @param null|string $schema Schema name (optional, overrides parsed schema)
*/
table(string $name, ?string $schema) : Table