Skip to contents

Check if a DuckLake table exists

Usage

db_table_exists(schema = "main", table)

Arguments

schema

Schema name (default "main")

table

Table name

Value

Logical TRUE if exists, FALSE otherwise

Examples

if (FALSE) { # \dontrun{
db_lake_connect()
db_table_exists(table = "imports")
# [1] TRUE
} # }