Skip to content

Commit fc8a13c

Browse files
authored
PG variable (#4214)
1 parent 80584a6 commit fc8a13c

File tree

334 files changed

+1066
-1054
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

334 files changed

+1066
-1054
lines changed

.github/styles/Google/Headings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ exceptions:
4141
- NFT
4242
- pgAdmin
4343
- PgVectorizer
44-
- PostgreSQL
44+
- Postgres
4545
- Prometheus
4646
- Promscale
4747
- Promscale Connector

.github/styles/Google/WordList.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ swap:
4545
master: primary
4646
network IP address: internal IP address
4747
open-source: open source
48-
Postgres: PostgreSQL
48+
PostgreSQL: Postgres
4949
Promscale connector: Promscale Connector
5050
quickstart: quick start
5151
regex: regular expression

.github/styles/Vocab/Timescale/accept.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pg_restore
9393
Plotly
9494
pre
9595
POSIX
96-
PostgreSQL
96+
Postgres
9797
[Pp]ooler?
9898
Prometheus
9999
PromLens

.github/styles/config/vocabularies/Timescale/accept.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ pg_restore
9494
Plotly
9595
pre
9696
POSIX
97-
PostgreSQL
97+
Postgres
9898
[Pp]ooler?
9999
Prometheus
100100
PromLens

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ To make a documentation page more visible and clear for Google:
146146
- Include main page keywords into the meta tags, page title, first header, and intro. These are usually the names of features described in the page. For example, for a page dedicated to creating hypertables, you can use the keyword **hypertable** in the following way:
147147

148148
- Title: Create a hypertable in Tiger Cloud
149-
- Description: Turn a regular PostgreSQL table into a hypertable in a few steps, using Tiger Cloud Console.
149+
- Description: Turn a regular $PG table into a hypertable in a few steps, using Tiger Cloud Console.
150150
- First header: Create a hypertable
151151

152152
## Docs for deprecated products

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<div align=center>
1010

11-
<h3>Tiger Cloud is the modern PostgreSQL data platform for all your applications. It enhances PostgreSQL to handle time series, events, real-time analytics, and vector search—all in a single database alongside transactional workloads.
11+
<h3>Tiger Cloud is the modern Postgres data platform for all your applications. It enhances Postgres to handle time series, events, real-time analytics, and vector search—all in a single database alongside transactional workloads.
1212
</h3>
1313

1414
[![Docs](https://img.shields.io/badge/Read_the_TigerData_docs-black?style=for-the-badge&logo=readthedocs&logoColor=white)](https://docs.tigerdata.com/)
@@ -47,9 +47,9 @@ See the [Contributing guide](CONTRIBUTING.md) for style and language guidance.
4747

4848
## Learn about TigerData
4949

50-
TigerData is PostgreSQL made powerful. To learn more about the company and its products, visit [tigerdata.com](https://www.tigerdata.com).
50+
TigerData is Postgres made powerful. To learn more about the company and its products, visit [tigerdata.com](https://www.tigerdata.com).
5151

5252
[docs-issues]: https://github.com/timescale/docs/issues
5353
[github-fork]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo
5454
[github-clone]: https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository
55-
[gatsby]: https://www.gatsbyjs.com/
55+
[gatsby]: https://www.gatsbyjs.com/

_code-samples/toolkit/stats_agg-one-variable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ see [Statistical Aggregates (2D)](./stats_agg_2D.md).
1818
In order to make common statistical aggregates easier to work with in window
1919
functions and continuous aggregates, Toolkit provides common statistical
2020
aggregates in a slightly different form than otherwise available in
21-
PostgreSQL or TimescaleDB. They are re-implemented within the [two-step aggregates
21+
$PG or TimescaleDB. They are re-implemented within the [two-step aggregates
2222
framework](./two-step_aggregation.md) which exposes a summary form to the
2323
user which can then have multiple accessors.
2424

_code-samples/toolkit/stats_agg-two-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For 1D statistical functions, see [Statistical Aggregates
1919
In order to make common statistical aggregates easier to work with in window
2020
functions and continuous aggregates, Toolkit provides common statistical
2121
aggregates in a slightly different form than otherwise available in
22-
PostgreSQL or TimescaleDB. They are re-implemented within the [two-step aggregates
22+
$PG or TimescaleDB. They are re-implemented within the [two-step aggregates
2323
framework](./two-step_aggregation.md) which exposes a summary form to the user
2424
which can then have multiple accessors.
2525

_code-samples/toolkit/two-step_aggregation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The inner aggregate call creates a machine-readable partial form that can be use
1818
While the one-step calling convention is easier for the simple case, it becomes much more difficult and hard to reason about for slightly more complex use-cases detailed in the next section. We wanted the calling convention to remain consistent and easy to reason about so you can take advantage of the same functions even as you start doing more complicated analyses. This also to keeps the docs consistent and prevents adding special cases everywhere.
1919

2020
## Why We Use Two-Step Aggregates <a id="two-step-philosophy"></a>
21-
Interestingly, almost all Postgres aggregates do a version of this [under the hood already](https://www.postgresql.org/docs/current/xaggr.html), where they have an internal state used for aggregation and then a final function that displays the output to the user.
21+
Interestingly, almost all $PG aggregates do a version of this [under the hood already](https://www.postgresql.org/docs/current/xaggr.html), where they have an internal state used for aggregation and then a final function that displays the output to the user.
2222

2323
So why do we make this calling convention explicit?
2424

_partials/_add-data-twelvedata-crypto.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ download the dataset, then upload the data to your $SERVICE_LONG.
1212
This test dataset contains second-by-second trade data for the most-traded crypto-assets
1313
and a regular table of asset symbols and company names.
1414

15-
To import up to 100GB of data directly from your current PostgreSQL based database,
16-
[migrate with downtime][migrate-with-downtime] using native PostgreSQL tooling. To seamlessly import 100GB-10TB+
17-
of data, use the [live migration][migrate-live] tooling supplied by $COMPANY. To add data from non-PostgreSQL
15+
To import up to 100GB of data directly from your current $PG-based database,
16+
[migrate with downtime][migrate-with-downtime] using native $PG tooling. To seamlessly import 100GB-10TB+
17+
of data, use the [live migration][migrate-live] tooling supplied by $COMPANY. To add data from non-$PG
1818
data sources, see [Import and ingest data][data-ingest].
1919

2020

0 commit comments

Comments
 (0)