-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #929 from Mause/test-pages
Add further test pages
- Loading branch information
Showing
11 changed files
with
87 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Bitstring Functions | ||
layout: docu | ||
--- | ||
|
||
{% duckdb_functions function['category'] == 'bit' %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Blob Functions | ||
layout: docu | ||
--- | ||
|
||
{% duckdb_functions function['category'] == 'blob' %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: String Functions | ||
layout: docu | ||
--- | ||
|
||
{% duckdb_functions function['category'] == 'string' %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Date Functions | ||
layout: docu | ||
--- | ||
|
||
{% duckdb_functions function['category'] == 'date' %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Enum Functions | ||
layout: docu | ||
--- | ||
|
||
{% duckdb_functions function['category'] == 'enum' %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Math Functions | ||
layout: docu | ||
--- | ||
|
||
{% duckdb_functions function['category'] == 'math' %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Nested Functions | ||
layout: docu | ||
--- | ||
|
||
## List Functions | ||
{% duckdb_functions function['category'] == 'list' %} | ||
|
||
## Map Functions | ||
{% duckdb_functions function['category'] == 'map' %} | ||
|
||
## Struct Functions | ||
{% duckdb_functions function['category'] == 'struct' %} | ||
|
||
## Union Functions | ||
{% duckdb_functions function['category'] == 'union' %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Overview | ||
layout: docu | ||
--- | ||
|
||
* <a href="bitstring">Bitstring Functions</a> | ||
* <a href="blob">Blob Functions</a> | ||
* <a href="dateformat">Date Format Functions</a> | ||
* <a href="date">Date Functions</a> | ||
* <a href="datepart">Date Part Functions</a> | ||
* <a href="enum">Enum Functions</a> | ||
* <a href="interval">Interval Functions</a> | ||
* <a href="nested">Nested Functions</a> | ||
* <a href="numeric">Numeric Functions</a> | ||
* <a href="patternmatching">Pattern Matching</a> | ||
* <a href="char">Text Functions</a> | ||
* <a href="time">Time Functions</a> | ||
* <a href="timestamp">Timestamp Functions</a> | ||
* <a href="timestamptz">Timestamp With Time Zone Functions</a> | ||
* <a href="utility">Utility Functions</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Utility Functions | ||
layout: docu | ||
--- | ||
|
||
{% duckdb_functions function['category'] == 'generic' || function['category'] == 'random' %} | ||
|