Skip to content

Instantly share code, notes, and snippets.

@grundprinzip
Created August 23, 2013 08:05
Show Gist options
  • Save grundprinzip/6316710 to your computer and use it in GitHub Desktop.
Save grundprinzip/6316710 to your computer and use it in GitHub Desktop.
{
"operators": {
"sref" : {
"type": "SetTable",
"name": "reference"
},
"bref": {
"type": "JsonTable",
"names": ["left", "right", "status"],
"types" : ["INTEGER", "INTEGER", "INTEGER"],
"groups" : [1,1,1],
"useStore": true,
"data" : [
["1","4","1"]
]
},
"0": {
"type": "JsonTable",
"names": ["left", "right", "status"],
"types" : ["INTEGER", "INTEGER", "INTEGER"],
"groups" : [1,1,1],
"useStore": true
},
"set" : {
"type" : "SetTable",
"name" : "check"
},
"insert" : {
"type" : "InsertScan",
"data" : [
[1,4,1]
]
},
"commit": {
"type" : "Commit"
},
"barrier" : {
"type" : "GetTable",
"name" : "check"
},
"merge" : {
"type": "MergeStore"
},
"search" : {
"type" : "TableScan",
"expression" : "hyrise::Store_FLV_F1_EQ_INT",
"withDelta" : true,
"f1": 2,
"v_f1" : 1
}
},
"edges" : [
["bref", "sref"],
["sref", "0"],
["0", "set"],
["0", "insert"],
["insert", "commit"],
["commit", "barrier"],
["barrier", "merge"],
["merge", "search"]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment