Navigation Menu

Skip to content

Commit

Permalink
test: sort by parameter name
Browse files Browse the repository at this point in the history
It's for HTTP test.
  • Loading branch information
kou committed Apr 24, 2017
1 parent 57b9b40 commit 23486e6
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
Expand Up @@ -81,7 +81,7 @@ load --table Logs_20150205
}
]
[[0,0.0,0.0],4]
logical_select Logs --shard_key timestamp --limit 0 --output_columns _id --drilldowns[restart].stage initial --drilldowns[restart].keys 'action' --drilldowns[restart].filter "_key @ 'Restart'" --drilldowns[restart].output_columns _key --drilldowns[start].stage initial --drilldowns[start].keys 'action' --drilldowns[start].filter "_key @ 'Start'" --drilldowns[start].output_columns _key --drilldowns[action].table restart --drilldowns[action].keys _key
logical_select Logs --shard_key timestamp --limit 0 --output_columns _id --drilldowns[action].table restart --drilldowns[action].keys _key --drilldowns[restart].stage initial --drilldowns[restart].keys 'action' --drilldowns[restart].filter "_key @ 'Restart'" --drilldowns[restart].output_columns _key --drilldowns[start].stage initial --drilldowns[start].keys 'action' --drilldowns[start].filter "_key @ 'Start'" --drilldowns[start].output_columns _key
[
[
0,
Expand All @@ -101,60 +101,60 @@ logical_select Logs --shard_key timestamp --limit 0 --output_columns _id
]
],
{
"restart": [
"action": [
[
1
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
]
],
[
"Restart"
"Restart",
1
]
],
"start": [
"restart": [
[
2
1
],
[
[
"_key",
"ShortText"
]
],
[
"Start"
],
[
"Restart"
]
],
"action": [
"start": [
[
1
2
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
]
],
[
"Restart",
1
"Start"
],
[
"Restart"
]
]
}
]
]
logical_select Logs --shard_key timestamp --limit 0 --output_columns _id --drilldowns[restart].stage initial --drilldowns[restart].keys 'action' --drilldowns[restart].filter "_key @ 'Restart'" --drilldowns[restart].output_columns _key --drilldowns[start].stage initial --drilldowns[start].keys 'action' --drilldowns[start].filter "_key @ 'Start'" --drilldowns[start].output_columns _key --drilldowns[action].table start --drilldowns[action].keys _key
logical_select Logs --shard_key timestamp --limit 0 --output_columns _id --drilldowns[action].table start --drilldowns[action].keys _key --drilldowns[restart].stage initial --drilldowns[restart].keys 'action' --drilldowns[restart].filter "_key @ 'Restart'" --drilldowns[restart].output_columns _key --drilldowns[start].stage initial --drilldowns[start].keys 'action' --drilldowns[start].filter "_key @ 'Start'" --drilldowns[start].output_columns _key
[
[
0,
Expand All @@ -174,58 +174,58 @@ logical_select Logs --shard_key timestamp --limit 0 --output_columns _id
]
],
{
"restart": [
"action": [
[
1
2
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
]
],
[
"Restart"
"Start",
1
],
[
"Restart",
1
]
],
"start": [
"restart": [
[
2
1
],
[
[
"_key",
"ShortText"
]
],
[
"Start"
],
[
"Restart"
]
],
"action": [
"start": [
[
2
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
]
],
[
"Start",
1
"Start"
],
[
"Restart",
1
"Restart"
]
]
}
Expand Down
Expand Up @@ -78,28 +78,28 @@ logical_select Logs \
--shard_key timestamp \
--limit 0 \
--output_columns _id \
--drilldowns[action].table restart \
--drilldowns[action].keys _key \
--drilldowns[restart].stage initial \
--drilldowns[restart].keys 'action' \
--drilldowns[restart].filter "_key @ 'Restart'" \
--drilldowns[restart].output_columns _key \
--drilldowns[start].stage initial \
--drilldowns[start].keys 'action' \
--drilldowns[start].filter "_key @ 'Start'" \
--drilldowns[start].output_columns _key \
--drilldowns[action].table restart \
--drilldowns[action].keys _key
--drilldowns[start].output_columns _key

logical_select Logs \
--shard_key timestamp \
--limit 0 \
--output_columns _id \
--drilldowns[action].table start \
--drilldowns[action].keys _key \
--drilldowns[restart].stage initial \
--drilldowns[restart].keys 'action' \
--drilldowns[restart].filter "_key @ 'Restart'" \
--drilldowns[restart].output_columns _key \
--drilldowns[start].stage initial \
--drilldowns[start].keys 'action' \
--drilldowns[start].filter "_key @ 'Start'" \
--drilldowns[start].output_columns _key \
--drilldowns[action].table start \
--drilldowns[action].keys _key
--drilldowns[start].output_columns _key

0 comments on commit 23486e6

Please sign in to comment.