-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Release 0.4.1 * [#877] added support for property value null (#908) fixes #877 * [#856] property pushdown hbase (#906) fixes #856 * [#864] Change examples to use csv (#905) fixes #864 * [#494] Add Set support to PropertyValue (#916) fixes #494 * [#888] Minor changes to Tuple-related functions. (#912) fixes #888 * [#779] Add code coverage for Gradoop (#914) fixes #779 * [#702] Add support for graphs without edges to TLFDataSource (#921) fixes #702 * [#909] Remove Flink dependency for store instance (#918) fixes #909 * [#876] added print for logical graph and graph collection (#913) fixes #876 * [#857] logical predicate chaining hbase (#920) fixes #857 * [#926] added argLine to maven properties (fix ide testing bug) (#929) fixes #926 * [#794] include new benchmark classes (#904) fixes #794 * [#312] example program for aggregation (#925) fixes #312 * [#901] Add SamplingConstants, AggregationConstants (#934) fixed #901 * [#935] Add tests for containment functions (#941) fixes #935 * [#900] Refactor sampling tests. (#907) fixes #900 * [#936] Generalized RollUp and DrillDown (#939) fixes #936 * [#947] Fix PageRank wrapper and add a test. (#949) fixes #947 * [#942] graph density computation for sampling evaluation (#946) fixes #942 * [#954] prepare minor release (#955) fixes #954
- Loading branch information
1 parent
68efc3d
commit c5b3a66
Showing
242 changed files
with
10,780 additions
and
3,367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,45 @@ | ||
GraphData (table 'graph_heads') | ||
|
||
----------*-------------*-------------------------*---------------*--------------------- | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
row | cf | cq | timestamp | value | ||
----------*-------------*-------------------------*---------------*--------------------- | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
| m | l | | {label} | ||
{id} *-------------*-------------------------*---------------*--------------------- | ||
| p | {property key} | | {property value} | ||
----------*-------------*-------------------------*---------------*--------------------- | ||
{id} *-------------*-------------------------*---------------*----------------------- | ||
| p_type | {property key} | | {property type byte} | ||
*-------------*-------------------------*---------------*----------------------- | ||
| p_value | {property key} | | {property value} | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
|
||
|
||
VertexData (table 'vertices') | ||
|
||
----------*-------------*-------------------------*---------------*--------------------- | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
row | cf | cq | timestamp | value | ||
----------*-------------*-------------------------*---------------*--------------------- | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
| m | l | | {label} | ||
{id} *-------------*-------------------------*---------------*--------------------- | ||
{id} *-------------*-------------------------*---------------*----------------------- | ||
| m | g | | {graph id} | ||
*-------------*-------------------------*---------------*--------------------- | ||
| p | {property key} | | {property value} | ||
----------*-------------*-------------------------*---------------*--------------------- | ||
*-------------*-------------------------*---------------*----------------------- | ||
| p_type | {property key} | | {property type byte} | ||
*-------------*-------------------------*---------------*----------------------- | ||
| p_value | {property key} | | {property value} | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
|
||
|
||
EdgeData (table 'edges') | ||
|
||
----------*-------------*-------------------------*---------------*--------------------- | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
row | cf | cq | timestamp | value | ||
----------*-------------*-------------------------*---------------*--------------------- | ||
----------*-------------*-------------------------*---------------*----------------------- | ||
| m | l | | {label} | ||
*-------------*-------------------------*---------------*--------------------- | ||
*-------------*-------------------------*---------------*----------------------- | ||
| m | g | | {graph id} | ||
{id} *-------------*-------------------------*---------------*--------------------- | ||
{id} *-------------*-------------------------*---------------*----------------------- | ||
| m | s | | {source vertex id} | ||
*-------------*-------------------------*---------------*--------------------- | ||
*-------------*-------------------------*---------------*----------------------- | ||
| m | t | | {varget vertex id} | ||
*-------------*-------------------------*---------------*--------------------- | ||
| p | {property key} | | {property value} | ||
----------*-------------*-------------------------*---------------*--------------------- | ||
*-------------*-------------------------*---------------*----------------------- | ||
| p_type | {property key} | | {property type byte} | ||
*-------------*-------------------------*---------------*----------------------- | ||
| p_value | {property key} | | {property value} | ||
----------*-------------*-------------------------*---------------*----------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.