We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6dfb03 commit c27404fCopy full SHA for c27404f
examples/official-site/documentation.sql
@@ -53,9 +53,9 @@ select 'text' as component,
53
select description as contents from component where name = $component;
54
55
select 'text' as component;
56
-select format('Introduced in SQLPage v%s.', introduced_in_version) as contents,
57
- 1 as size
58
-from component where name = $component;
+select format('Introduced in SQLPage v%s.', introduced_in_version) as contents, 1 as size
+from component
+where name = $component and introduced_in_version IS NOT NULL;
59
60
select 'title' as component, 3 as level, 'Top-level parameters' as contents where $component IS NOT NULL;
61
select 'card' as component, 3 AS columns where $component IS NOT NULL;
0 commit comments