Pipeline Comparison POC

This page demonstrates the documentation component set. Compare it with the MDX version to see rendering differences between the two pipelines.

Note

This is a note admonition.

Warning

Watch out

This is a warning with a custom title.

Here is a SQL code block:

SELECT *
FROM my_table
WHERE created_at > DATEADD(day, -7, CURRENT_TIMESTAMP())
ORDER BY created_at DESC;
import snowflake.connector

conn = snowflake.connector.connect(
    user='myuser',
    password='mypassword',
    account='myaccount'
)

Tabs example

CREATE TABLE my_table (id INT, name STRING);

Table example

Column AColumn BColumn C
Row 1Value100
Row 2Value200
Row 3Value300