Skip to content

Commit

Permalink
Merge ce7e68b into 1cbd4fc
Browse files Browse the repository at this point in the history
  • Loading branch information
jsjant authored Apr 17, 2024
2 parents 1cbd4fc + ce7e68b commit 22ecd96
Show file tree
Hide file tree
Showing 29 changed files with 975 additions and 0 deletions.
506 changes: 506 additions & 0 deletions ydb/library/yql/udfs/common/roaring/roaring.cpp

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions ydb/library/yql/udfs/common/roaring/test/canondata/result.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"test.test[cardinality]": [
{
"uri": "file://test.test_cardinality_/results.txt"
}
],
"test.test[intersect]": [
{
"uri": "file://test.test_intersect_/results.txt"
}
],
"test.test[intersect_binary]": [
{
"uri": "file://test.test_intersect_binary_/results.txt"
}
],
"test.test[serialize_deserialize]": [
{
"uri": "file://test.test_serialize_deserialize_/results.txt"
}
],
"test.test[union]": [
{
"uri": "file://test.test_union_/results.txt"
}
],
"test.test[union_binary]": [
{
"uri": "file://test.test_union_binary_/results.txt"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
[
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"OrCardinality";
[
"DataType";
"Uint32"
]
]
]
]
];
"Data" = [
[
"3"
]
]
}
]
};
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"AndCardinality";
[
"OptionalType";
[
"ListType";
[
"DataType";
"Uint32"
]
]
]
]
]
]
];
"Data" = [
[
[
[
"1"
]
]
]
]
}
]
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"AndList";
[
"OptionalType";
[
"ListType";
[
"DataType";
"Uint32"
]
]
]
]
]
]
];
"Data" = [
[
[
[
"1"
]
]
]
]
}
]
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"AndWithBinaryList";
[
"OptionalType";
[
"ListType";
[
"DataType";
"Uint32"
]
]
]
]
]
]
];
"Data" = [
[
[
[
"1"
]
]
]
]
}
]
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
[
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"DeserializedList";
[
"OptionalType";
[
"ListType";
[
"DataType";
"Uint32"
]
]
]
]
]
]
];
"Data" = [
[
[
[
"10";
"567"
]
]
]
]
}
]
};
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"Serialized";
[
"DataType";
"String"
]
]
]
]
];
"Data" = [
[
":0\0\0\1\0\0\0\0\0\1\0\x10\0\0\0\n\0007\2"
]
]
}
]
};
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"LimitedList";
[
"OptionalType";
[
"ListType";
[
"DataType";
"Uint32"
]
]
]
]
]
]
];
"Data" = [
[
[
[
"10"
]
]
]
]
}
]
};
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"OffsetedList";
[
"OptionalType";
[
"ListType";
[
"DataType";
"Uint32"
]
]
]
]
]
]
];
"Data" = [
[
[
[
"567"
]
]
]
]
}
]
};
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"OffsetedList";
[
"OptionalType";
[
"ListType";
[
"DataType";
"Uint32"
]
]
]
]
]
]
];
"Data" = [
[
[
[]
]
]
]
}
]
}
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[
{
"Write" = [
{
"Type" = [
"ListType";
[
"StructType";
[
[
"OrList";
[
"DataType";
"Uint32"
]
]
]
]
];
"Data" = [
[
"3"
]
]
}
]
}
]
Loading

0 comments on commit 22ecd96

Please sign in to comment.