TableName#

class ducklake.TableName(schema: str, name: str)[source]#

A tuple representing the name of a table.

Create new instance of TableName(schema, name)

Methods:

count

Return number of occurrences of value.

index

Return first index of value.

Attributes:

name

The name of the table within the schema.

schema

The schema of the table.

count(value, /)#

Return number of occurrences of value.

index(value, start=0, stop=sys.maxsize, /)#

Return first index of value.

Raises ValueError if the value is not present.

name: str#

The name of the table within the schema.

schema: str#

The schema of the table. The default schema is “main”.