Skip to content

Commit 52dda7b

Browse files
author
Derek Nelson
committed
pipeline=# -> postgres=#
1 parent 1a164b5 commit 52dda7b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

continuous-views.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Continuous views are defined as PostgreSQL views with the :code:`action` paramet
2020

2121
where **query** is a subset of a PostgreSQL :code:`SELECT` statement:
2222

23-
.. code-block:: pipeline
23+
.. code-block:: sql
2424
2525
SELECT [ DISTINCT [ ON ( expression [, ...] ) ] ]
2626
expression [ [ AS ] output_name ] [, ...]

integrations.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ PipelineDB supports ingesting data from Kafka topics into streams. All of this f
1212

1313
**pipeline_kafka** internally uses shared memory to sync state between background workers, so it must be loaded as a shared library. You can do so by adding the following line to your :code:`pipelinedb.conf` file. If you're already loading some shared libraries, then simply add :code:`pipeline_kafka` as a comma-separated list.
1414

15-
.. code-block:: pipeline
15+
.. code-block:: sh
1616
1717
shared_preload_libraries = pipeline_kafka
1818
1919
You can now load the extention into a database:
2020

2121
.. _`PostgreSQL's COPY`: http://www.postgresql.org/docs/current/static/sql-copy.html
2222

23-
.. code-block:: pipeline
23+
.. code-block:: psql
2424
25-
# CREATE EXTENSION pipeline_kafka;
25+
postgres=# CREATE EXTENSION pipeline_kafka;
2626
CREATE EXTENSION
2727
2828
Before you can start using **pipeline_kafka**, you must add a broker for your Kafka deployment.
@@ -107,9 +107,9 @@ The repository for the extension is located `here <https://github.com/pipelinedb
107107

108108
To enable the extension, it must be explicitly loaded:
109109

110-
.. code-block:: pipeline
110+
.. code-block:: psql
111111
112-
# CREATE EXTENSION pipeline_kinesis;
112+
postgres=# CREATE EXTENSION pipeline_kinesis;
113113
CREATE EXTENSION
114114
115115
To start ingestion, you must first tell pipeline where and how to get kinesis

0 commit comments

Comments
 (0)