mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
change default textual bindings for cqlgen from NumberNameToString() to ToString()
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
# reference: https://github.com/datastax/java-driver/tree/4.x/manual/core
|
||||
bindings:
|
||||
ascii: NumberNameToString();
|
||||
text: NumberNameToString();
|
||||
ascii: ToString();
|
||||
text: ToString();
|
||||
int: ToInt();
|
||||
bigint: Identity();
|
||||
blob: ByteBufferSizedHashed(30);
|
||||
@@ -12,11 +12,11 @@ bindings:
|
||||
duration: ToCqlDurationNanos();
|
||||
float: ToFloat()
|
||||
frozen<list<int>>: ListSizedHashed(HashRange(3,7),ToInt()));
|
||||
list<text>: ListStepped(NumberNameToString(),NumberNameToString())
|
||||
map<text,text>: MapSized(3, Combinations('A-Z;0-9'), NumberNameToString(), ToString());
|
||||
list<text>: ListStepped(ToString(),ToString())
|
||||
map<text,text>: MapSized(3, Combinations('A-Z;0-9'), ToString(), ToString());
|
||||
map<int,int>: MapSized(3, ToInt(), ToInt());
|
||||
counter: HashRange(1,3);
|
||||
set<text>: SetSized(HashRange(3,4),NumberNameToString()));
|
||||
set<text>: SetSized(HashRange(3,4),ToString()));
|
||||
smallint: ToShort();
|
||||
time: StartingEpochMillis('2022-01-01 00:00:00'); ToLocalTime();
|
||||
timestamp: ToJavaInstant();
|
||||
|
||||
Reference in New Issue
Block a user