Skip to content

๐Ÿ“ Lipsum Transformer โ€‹

The Lipsum transformer is used to generate placeholder lorem ipsum style text. This can be helpful when you want to anonymize or simulate human-readable content in your SQL data dump.

๐Ÿ” Alternation โ€‹

This transformer does not mutate the existing row value โ€” it generates a new value.

โœ… Valid Data Types โ€‹

  • String

โš™๏ธ Options โ€‹

OptionTypeDescriptionDefault
number-of-wordsNumberNumber of words to generate in the lipsum sentence25

๐Ÿงช Examples โ€‹

Example 1: Default โ€‹

Generates 25 words of Lipsum text by default.

toml
[[table.columns]]
name = "column-example"
transformer = "lipsum"
Output: "In quo etiam Democritus haeret, turbulenta concursio hunc mundi ornatum efficere non poterit. Ne illud quidem physici, credere aliquid esse minimum, quod profecto numquam putavisset."

Example 2: Specifying number-of-words โ€‹

toml
[[table.columns]]
name = "column-example"
transformer = { lipsum = { number-of-words = 30 } }
Output: "Voluptatem; illud enim ipsum, quod quibusdam medium videretur, cum omni voluptate corporis, voluptate, quod, tum voluptatem ipsam."