You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add SHOW CONSTANT VALUES and catalog tables to all docs
Update help topics, quick reference, language reference, site docs
(catalog schema, show-constants, show-settings), and project-settings
skill to document the new SHOW CONSTANT VALUES command and
CATALOG.CONSTANTS / CATALOG.CONSTANT_VALUES tables.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs-site/src/reference/query/show-constants.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,16 @@
4
4
5
5
SHOW CONSTANTS [IN <module>]
6
6
7
+
SHOW CONSTANT VALUES [IN <module>]
8
+
7
9
## Description
8
10
9
11
Lists constants defined in the project. Without the `IN` clause, lists all constants across all modules. With `IN <module>`, restricts the listing to constants in the specified module.
10
12
11
13
Constants are named values (strings, integers, booleans, etc.) that can be configured per deployment environment. They are typically used for API URLs, feature flags, and configuration values.
12
14
15
+
`SHOW CONSTANT VALUES` shows one row per constant per configuration, making it easy to compare constant overrides across configurations (e.g., Default, Acceptance, Production). Each constant's default value is shown first, followed by any per-configuration overrides.
16
+
13
17
## Parameters
14
18
15
19
*module*
@@ -29,6 +33,18 @@ List constants in a specific module:
29
33
SHOW CONSTANTS IN MyModule
30
34
```
31
35
36
+
Compare constant values across all configurations:
0 commit comments