v0.7.0
Pre-release
Pre-release
- Support arrays
- Construct an array with
ARRAY[1, 2, 3] - Extract an element with
@array[1]
- Construct an array with
- Support global expressions: evaluating some expressions before generating the data file, used in initialize some shared constants.
- New syntax:
CASE WHENexpression without the "case" value.current_timestamp- Statements
a; b; c, which evaluates all 3 expressions but only keep the last result - Bitwise operators
a & b | c ^ ~d
- New functions:
substringchar_length,octet_lengthoverlaydivmodcoalescegenerate_seriesrand.shufflerand.uuid
- New CLI flags:
--no-schemas(do not dump schemas)--now(override the value ofcurrent_timestamp)-D,--initialize(specify global expressions from command line)
- Added
step(mock) RNG