๐ 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 โ
| Option | Type | Description | Default |
|---|---|---|---|
number-of-words | Number | Number of words to generate in the lipsum sentence | 25 |
๐งช 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."