I have created a table like this
CREATE TABLE 'btc_trades3' (
symbol INT,
side SYMBOL capacity 256 CACHE,
price DOUBLE,
amount DOUBLE,
timestamp TIMESTAMP
) timestamp (timestamp) PARTITION BY DAY WAL DEDUP UPSERT KEYS(symbol, timestamp);
I know I can use the “Copy Schema To Clipboard” link in the web console to get the schema, but I would like to find programmatically if a table has deduplication active and what’s the configuration. I tried using the wal_tables()
function, but that gives me some metadata that does not include deduplication.
Are there any other functions I could use? Thanks!