Skip to content

Commit

Permalink
Merge branch '5.4.x' into 5.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
JimGalasyn committed Feb 26, 2020
2 parents 91dfc36 + fc10029 commit a475c5f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion docs-md/developer-guide/serialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ ksqlDB supports these serialization formats:

### DELIMITED

The `DELIMITED` format supports comma separated values.
The `DELIMITED` format supports comma-separated values. You can use other
delimiter characters by specifying the VALUE_DELIMITER when you use
VALUE_FORMAT='DELIMITED' in a WITH clause. Only a single character is valid
as a delimiter. The default is the comma character. For space- and
tab-delimited values, use the special values `SPACE` or `TAB`, not an actual
space or tab character.

The serialized object should be a Kafka-serialized string, which will be
split into columns.
Expand Down
7 changes: 6 additions & 1 deletion docs/developer-guide/serialization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,12 @@ KSQL currently supports three serialization formats:
DELIMITED
---------

The ``DELIMITED`` format supports comma separated values.
The ``DELIMITED`` format supports comma separated values. You can use other
delimiter characters by specifying the VALUE_DELIMITER when you use
VALUE_FORMAT='DELIMITED' in a WITH clause. Only a single character is valid
as a delimiter. The default is the comma character. For space- and
tab-delimited values, use the special values ``SPACE`` or ``TAB``, not an actual
space or tab character.

The serialized object should be a Kafka-serialized string, which will be split into columns.

Expand Down

0 comments on commit a475c5f

Please sign in to comment.