PageRenderTime 46ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/release-0.0.0-rc0/hive/external/ql/src/test/results/clientpositive/input13.q.out

#
text | 852 lines | 829 code | 23 blank | 0 comment | 0 complexity | 7d7993f7c7f7668b0c05d68ff0c91334 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. PREHOOK: query: CREATE TABLE dest1(key INT, value STRING) STORED AS TEXTFILE
  2. PREHOOK: type: CREATETABLE
  3. POSTHOOK: query: CREATE TABLE dest1(key INT, value STRING) STORED AS TEXTFILE
  4. POSTHOOK: type: CREATETABLE
  5. POSTHOOK: Output: default@dest1
  6. PREHOOK: query: CREATE TABLE dest2(key INT, value STRING) STORED AS TEXTFILE
  7. PREHOOK: type: CREATETABLE
  8. POSTHOOK: query: CREATE TABLE dest2(key INT, value STRING) STORED AS TEXTFILE
  9. POSTHOOK: type: CREATETABLE
  10. POSTHOOK: Output: default@dest2
  11. PREHOOK: query: CREATE TABLE dest3(key INT) PARTITIONED BY(ds STRING, hr STRING) STORED AS TEXTFILE
  12. PREHOOK: type: CREATETABLE
  13. POSTHOOK: query: CREATE TABLE dest3(key INT) PARTITIONED BY(ds STRING, hr STRING) STORED AS TEXTFILE
  14. POSTHOOK: type: CREATETABLE
  15. POSTHOOK: Output: default@dest3
  16. PREHOOK: query: EXPLAIN
  17. FROM src
  18. INSERT OVERWRITE TABLE dest1 SELECT src.* WHERE src.key < 100
  19. INSERT OVERWRITE TABLE dest2 SELECT src.key, src.value WHERE src.key >= 100 and src.key < 200
  20. INSERT OVERWRITE TABLE dest3 PARTITION(ds='2008-04-08', hr='12') SELECT src.key WHERE src.key >= 200 and src.key < 300
  21. INSERT OVERWRITE DIRECTORY '../build/ql/test/data/warehouse/dest4.out' SELECT src.value WHERE src.key >= 300
  22. PREHOOK: type: QUERY
  23. POSTHOOK: query: EXPLAIN
  24. FROM src
  25. INSERT OVERWRITE TABLE dest1 SELECT src.* WHERE src.key < 100
  26. INSERT OVERWRITE TABLE dest2 SELECT src.key, src.value WHERE src.key >= 100 and src.key < 200
  27. INSERT OVERWRITE TABLE dest3 PARTITION(ds='2008-04-08', hr='12') SELECT src.key WHERE src.key >= 200 and src.key < 300
  28. INSERT OVERWRITE DIRECTORY '../build/ql/test/data/warehouse/dest4.out' SELECT src.value WHERE src.key >= 300
  29. POSTHOOK: type: QUERY
  30. ABSTRACT SYNTAX TREE:
  31. (TOK_QUERY (TOK_FROM (TOK_TABREF (TOK_TABNAME src))) (TOK_INSERT (TOK_DESTINATION (TOK_TAB (TOK_TABNAME dest1))) (TOK_SELECT (TOK_SELEXPR (TOK_ALLCOLREF (TOK_TABNAME src)))) (TOK_WHERE (< (. (TOK_TABLE_OR_COL src) key) 100))) (TOK_INSERT (TOK_DESTINATION (TOK_TAB (TOK_TABNAME dest2))) (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL src) key)) (TOK_SELEXPR (. (TOK_TABLE_OR_COL src) value))) (TOK_WHERE (and (>= (. (TOK_TABLE_OR_COL src) key) 100) (< (. (TOK_TABLE_OR_COL src) key) 200)))) (TOK_INSERT (TOK_DESTINATION (TOK_TAB (TOK_TABNAME dest3) (TOK_PARTSPEC (TOK_PARTVAL ds '2008-04-08') (TOK_PARTVAL hr '12')))) (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL src) key))) (TOK_WHERE (and (>= (. (TOK_TABLE_OR_COL src) key) 200) (< (. (TOK_TABLE_OR_COL src) key) 300)))) (TOK_INSERT (TOK_DESTINATION (TOK_DIR '../build/ql/test/data/warehouse/dest4.out')) (TOK_SELECT (TOK_SELEXPR (. (TOK_TABLE_OR_COL src) value))) (TOK_WHERE (>= (. (TOK_TABLE_OR_COL src) key) 300))))
  32. STAGE DEPENDENCIES:
  33. Stage-4 is a root stage
  34. Stage-8 depends on stages: Stage-4 , consists of Stage-7, Stage-6
  35. Stage-7
  36. Stage-0 depends on stages: Stage-7, Stage-6
  37. Stage-5 depends on stages: Stage-0
  38. Stage-6
  39. Stage-12 depends on stages: Stage-4 , consists of Stage-11, Stage-10
  40. Stage-11
  41. Stage-1 depends on stages: Stage-11, Stage-10
  42. Stage-9 depends on stages: Stage-1
  43. Stage-10
  44. Stage-16 depends on stages: Stage-4 , consists of Stage-15, Stage-14
  45. Stage-15
  46. Stage-2 depends on stages: Stage-15, Stage-14
  47. Stage-13 depends on stages: Stage-2
  48. Stage-14
  49. Stage-19 depends on stages: Stage-4 , consists of Stage-18, Stage-17
  50. Stage-18
  51. Stage-3 depends on stages: Stage-18, Stage-17
  52. Stage-17
  53. STAGE PLANS:
  54. Stage: Stage-4
  55. Map Reduce
  56. Alias -> Map Operator Tree:
  57. src
  58. TableScan
  59. alias: src
  60. Filter Operator
  61. predicate:
  62. expr: (key < 100)
  63. type: boolean
  64. Select Operator
  65. expressions:
  66. expr: key
  67. type: string
  68. expr: value
  69. type: string
  70. outputColumnNames: _col0, _col1
  71. Select Operator
  72. expressions:
  73. expr: UDFToInteger(_col0)
  74. type: int
  75. expr: _col1
  76. type: string
  77. outputColumnNames: _col0, _col1
  78. File Output Operator
  79. compressed: false
  80. GlobalTableId: 1
  81. table:
  82. input format: org.apache.hadoop.mapred.TextInputFormat
  83. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  84. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  85. name: default.dest1
  86. Filter Operator
  87. predicate:
  88. expr: ((key >= 100) and (key < 200))
  89. type: boolean
  90. Select Operator
  91. expressions:
  92. expr: key
  93. type: string
  94. expr: value
  95. type: string
  96. outputColumnNames: _col0, _col1
  97. Select Operator
  98. expressions:
  99. expr: UDFToInteger(_col0)
  100. type: int
  101. expr: _col1
  102. type: string
  103. outputColumnNames: _col0, _col1
  104. File Output Operator
  105. compressed: false
  106. GlobalTableId: 2
  107. table:
  108. input format: org.apache.hadoop.mapred.TextInputFormat
  109. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  110. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  111. name: default.dest2
  112. Filter Operator
  113. predicate:
  114. expr: ((key >= 200) and (key < 300))
  115. type: boolean
  116. Select Operator
  117. expressions:
  118. expr: key
  119. type: string
  120. outputColumnNames: _col0
  121. Select Operator
  122. expressions:
  123. expr: UDFToInteger(_col0)
  124. type: int
  125. outputColumnNames: _col0
  126. File Output Operator
  127. compressed: false
  128. GlobalTableId: 3
  129. table:
  130. input format: org.apache.hadoop.mapred.TextInputFormat
  131. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  132. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  133. name: default.dest3
  134. Filter Operator
  135. predicate:
  136. expr: (key >= 300)
  137. type: boolean
  138. Select Operator
  139. expressions:
  140. expr: value
  141. type: string
  142. outputColumnNames: _col0
  143. File Output Operator
  144. compressed: false
  145. GlobalTableId: 4
  146. table:
  147. input format: org.apache.hadoop.mapred.TextInputFormat
  148. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  149. Stage: Stage-8
  150. Conditional Operator
  151. Stage: Stage-7
  152. Move Operator
  153. files:
  154. hdfs directory: true
  155. destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10000
  156. Stage: Stage-0
  157. Move Operator
  158. tables:
  159. replace: true
  160. table:
  161. input format: org.apache.hadoop.mapred.TextInputFormat
  162. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  163. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  164. name: default.dest1
  165. Stage: Stage-5
  166. Stats-Aggr Operator
  167. Stage: Stage-6
  168. Map Reduce
  169. Alias -> Map Operator Tree:
  170. pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10007
  171. File Output Operator
  172. compressed: false
  173. GlobalTableId: 0
  174. table:
  175. input format: org.apache.hadoop.mapred.TextInputFormat
  176. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  177. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  178. name: default.dest1
  179. Stage: Stage-12
  180. Conditional Operator
  181. Stage: Stage-11
  182. Move Operator
  183. files:
  184. hdfs directory: true
  185. destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10002
  186. Stage: Stage-1
  187. Move Operator
  188. tables:
  189. replace: true
  190. table:
  191. input format: org.apache.hadoop.mapred.TextInputFormat
  192. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  193. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  194. name: default.dest2
  195. Stage: Stage-9
  196. Stats-Aggr Operator
  197. Stage: Stage-10
  198. Map Reduce
  199. Alias -> Map Operator Tree:
  200. pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10008
  201. File Output Operator
  202. compressed: false
  203. GlobalTableId: 0
  204. table:
  205. input format: org.apache.hadoop.mapred.TextInputFormat
  206. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  207. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  208. name: default.dest2
  209. Stage: Stage-16
  210. Conditional Operator
  211. Stage: Stage-15
  212. Move Operator
  213. files:
  214. hdfs directory: true
  215. destination: pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10004
  216. Stage: Stage-2
  217. Move Operator
  218. tables:
  219. partition:
  220. ds 2008-04-08
  221. hr 12
  222. replace: true
  223. table:
  224. input format: org.apache.hadoop.mapred.TextInputFormat
  225. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  226. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  227. name: default.dest3
  228. Stage: Stage-13
  229. Stats-Aggr Operator
  230. Stage: Stage-14
  231. Map Reduce
  232. Alias -> Map Operator Tree:
  233. pfile:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10009
  234. File Output Operator
  235. compressed: false
  236. GlobalTableId: 0
  237. table:
  238. input format: org.apache.hadoop.mapred.TextInputFormat
  239. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  240. serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
  241. name: default.dest3
  242. Stage: Stage-19
  243. Conditional Operator
  244. Stage: Stage-18
  245. Move Operator
  246. files:
  247. hdfs directory: true
  248. destination: file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10006
  249. Stage: Stage-3
  250. Move Operator
  251. files:
  252. hdfs directory: true
  253. destination: ../build/ql/test/data/warehouse/dest4.out
  254. Stage: Stage-17
  255. Map Reduce
  256. Alias -> Map Operator Tree:
  257. file:/data/users/sdong/www/open-source-hive1/build/ql/scratchdir/hive_2011-02-10_15-53-16_613_1322226487151381018/-ext-10010
  258. File Output Operator
  259. compressed: false
  260. GlobalTableId: 0
  261. table:
  262. input format: org.apache.hadoop.mapred.TextInputFormat
  263. output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
  264. PREHOOK: query: FROM src
  265. INSERT OVERWRITE TABLE dest1 SELECT src.* WHERE src.key < 100
  266. INSERT OVERWRITE TABLE dest2 SELECT src.key, src.value WHERE src.key >= 100 and src.key < 200
  267. INSERT OVERWRITE TABLE dest3 PARTITION(ds='2008-04-08', hr='12') SELECT src.key WHERE src.key >= 200 and src.key < 300
  268. INSERT OVERWRITE DIRECTORY '../build/ql/test/data/warehouse/dest4.out' SELECT src.value WHERE src.key >= 300
  269. PREHOOK: type: QUERY
  270. PREHOOK: Input: default@src
  271. PREHOOK: Output: ../build/ql/test/data/warehouse/dest4.out
  272. PREHOOK: Output: default@dest1
  273. PREHOOK: Output: default@dest2
  274. PREHOOK: Output: default@dest3@ds=2008-04-08/hr=12
  275. POSTHOOK: query: FROM src
  276. INSERT OVERWRITE TABLE dest1 SELECT src.* WHERE src.key < 100
  277. INSERT OVERWRITE TABLE dest2 SELECT src.key, src.value WHERE src.key >= 100 and src.key < 200
  278. INSERT OVERWRITE TABLE dest3 PARTITION(ds='2008-04-08', hr='12') SELECT src.key WHERE src.key >= 200 and src.key < 300
  279. INSERT OVERWRITE DIRECTORY '../build/ql/test/data/warehouse/dest4.out' SELECT src.value WHERE src.key >= 300
  280. POSTHOOK: type: QUERY
  281. POSTHOOK: Input: default@src
  282. POSTHOOK: Output: ../build/ql/test/data/warehouse/dest4.out
  283. POSTHOOK: Output: default@dest1
  284. POSTHOOK: Output: default@dest2
  285. POSTHOOK: Output: default@dest3@ds=2008-04-08/hr=12
  286. POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  287. POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  288. POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  289. POSTHOOK: Lineage: dest2.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  290. POSTHOOK: Lineage: dest3 PARTITION(ds=2008-04-08,hr=12).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  291. PREHOOK: query: SELECT dest1.* FROM dest1
  292. PREHOOK: type: QUERY
  293. PREHOOK: Input: default@dest1
  294. PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-53-22_841_3066800367150585075/-mr-10000
  295. POSTHOOK: query: SELECT dest1.* FROM dest1
  296. POSTHOOK: type: QUERY
  297. POSTHOOK: Input: default@dest1
  298. POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-53-22_841_3066800367150585075/-mr-10000
  299. POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  300. POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  301. POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  302. POSTHOOK: Lineage: dest2.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  303. POSTHOOK: Lineage: dest3 PARTITION(ds=2008-04-08,hr=12).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  304. 86 val_86
  305. 27 val_27
  306. 98 val_98
  307. 66 val_66
  308. 37 val_37
  309. 15 val_15
  310. 82 val_82
  311. 17 val_17
  312. 0 val_0
  313. 57 val_57
  314. 20 val_20
  315. 92 val_92
  316. 47 val_47
  317. 72 val_72
  318. 4 val_4
  319. 35 val_35
  320. 54 val_54
  321. 51 val_51
  322. 65 val_65
  323. 83 val_83
  324. 12 val_12
  325. 67 val_67
  326. 84 val_84
  327. 58 val_58
  328. 8 val_8
  329. 24 val_24
  330. 42 val_42
  331. 0 val_0
  332. 96 val_96
  333. 26 val_26
  334. 51 val_51
  335. 43 val_43
  336. 95 val_95
  337. 98 val_98
  338. 85 val_85
  339. 77 val_77
  340. 0 val_0
  341. 87 val_87
  342. 15 val_15
  343. 72 val_72
  344. 90 val_90
  345. 19 val_19
  346. 10 val_10
  347. 5 val_5
  348. 58 val_58
  349. 35 val_35
  350. 95 val_95
  351. 11 val_11
  352. 34 val_34
  353. 42 val_42
  354. 78 val_78
  355. 76 val_76
  356. 41 val_41
  357. 30 val_30
  358. 64 val_64
  359. 76 val_76
  360. 74 val_74
  361. 69 val_69
  362. 33 val_33
  363. 70 val_70
  364. 5 val_5
  365. 2 val_2
  366. 35 val_35
  367. 80 val_80
  368. 44 val_44
  369. 53 val_53
  370. 90 val_90
  371. 12 val_12
  372. 5 val_5
  373. 70 val_70
  374. 24 val_24
  375. 70 val_70
  376. 83 val_83
  377. 26 val_26
  378. 67 val_67
  379. 18 val_18
  380. 9 val_9
  381. 18 val_18
  382. 97 val_97
  383. 84 val_84
  384. 28 val_28
  385. 37 val_37
  386. 90 val_90
  387. 97 val_97
  388. PREHOOK: query: SELECT dest2.* FROM dest2
  389. PREHOOK: type: QUERY
  390. PREHOOK: Input: default@dest2
  391. PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-53-23_115_3259629464718805746/-mr-10000
  392. POSTHOOK: query: SELECT dest2.* FROM dest2
  393. POSTHOOK: type: QUERY
  394. POSTHOOK: Input: default@dest2
  395. POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-53-23_115_3259629464718805746/-mr-10000
  396. POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  397. POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  398. POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  399. POSTHOOK: Lineage: dest2.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  400. POSTHOOK: Lineage: dest3 PARTITION(ds=2008-04-08,hr=12).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  401. 165 val_165
  402. 193 val_193
  403. 150 val_150
  404. 128 val_128
  405. 146 val_146
  406. 152 val_152
  407. 145 val_145
  408. 166 val_166
  409. 153 val_153
  410. 193 val_193
  411. 174 val_174
  412. 199 val_199
  413. 174 val_174
  414. 162 val_162
  415. 167 val_167
  416. 195 val_195
  417. 113 val_113
  418. 155 val_155
  419. 128 val_128
  420. 149 val_149
  421. 129 val_129
  422. 170 val_170
  423. 157 val_157
  424. 111 val_111
  425. 169 val_169
  426. 125 val_125
  427. 192 val_192
  428. 187 val_187
  429. 176 val_176
  430. 138 val_138
  431. 103 val_103
  432. 176 val_176
  433. 137 val_137
  434. 180 val_180
  435. 181 val_181
  436. 138 val_138
  437. 179 val_179
  438. 172 val_172
  439. 129 val_129
  440. 158 val_158
  441. 119 val_119
  442. 197 val_197
  443. 100 val_100
  444. 199 val_199
  445. 191 val_191
  446. 165 val_165
  447. 120 val_120
  448. 131 val_131
  449. 156 val_156
  450. 196 val_196
  451. 197 val_197
  452. 187 val_187
  453. 137 val_137
  454. 169 val_169
  455. 179 val_179
  456. 118 val_118
  457. 134 val_134
  458. 138 val_138
  459. 118 val_118
  460. 177 val_177
  461. 168 val_168
  462. 143 val_143
  463. 160 val_160
  464. 195 val_195
  465. 119 val_119
  466. 149 val_149
  467. 138 val_138
  468. 103 val_103
  469. 113 val_113
  470. 167 val_167
  471. 116 val_116
  472. 191 val_191
  473. 128 val_128
  474. 193 val_193
  475. 104 val_104
  476. 175 val_175
  477. 105 val_105
  478. 190 val_190
  479. 114 val_114
  480. 164 val_164
  481. 125 val_125
  482. 164 val_164
  483. 187 val_187
  484. 104 val_104
  485. 163 val_163
  486. 119 val_119
  487. 199 val_199
  488. 120 val_120
  489. 169 val_169
  490. 178 val_178
  491. 136 val_136
  492. 172 val_172
  493. 133 val_133
  494. 175 val_175
  495. 189 val_189
  496. 134 val_134
  497. 100 val_100
  498. 146 val_146
  499. 186 val_186
  500. 167 val_167
  501. 183 val_183
  502. 152 val_152
  503. 194 val_194
  504. 126 val_126
  505. 169 val_169
  506. PREHOOK: query: SELECT dest3.* FROM dest3
  507. PREHOOK: type: QUERY
  508. PREHOOK: Input: default@dest3@ds=2008-04-08/hr=12
  509. PREHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-53-23_381_121664267251302859/-mr-10000
  510. POSTHOOK: query: SELECT dest3.* FROM dest3
  511. POSTHOOK: type: QUERY
  512. POSTHOOK: Input: default@dest3@ds=2008-04-08/hr=12
  513. POSTHOOK: Output: file:/tmp/sdong/hive_2011-02-10_15-53-23_381_121664267251302859/-mr-10000
  514. POSTHOOK: Lineage: dest1.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  515. POSTHOOK: Lineage: dest1.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  516. POSTHOOK: Lineage: dest2.key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  517. POSTHOOK: Lineage: dest2.value SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
  518. POSTHOOK: Lineage: dest3 PARTITION(ds=2008-04-08,hr=12).key EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
  519. 238 2008-04-08 12
  520. 255 2008-04-08 12
  521. 278 2008-04-08 12
  522. 265 2008-04-08 12
  523. 273 2008-04-08 12
  524. 224 2008-04-08 12
  525. 213 2008-04-08 12
  526. 281 2008-04-08 12
  527. 277 2008-04-08 12
  528. 209 2008-04-08 12
  529. 252 2008-04-08 12
  530. 292 2008-04-08 12
  531. 219 2008-04-08 12
  532. 287 2008-04-08 12
  533. 237 2008-04-08 12
  534. 207 2008-04-08 12
  535. 208 2008-04-08 12
  536. 247 2008-04-08 12
  537. 266 2008-04-08 12
  538. 203 2008-04-08 12
  539. 205 2008-04-08 12
  540. 221 2008-04-08 12
  541. 280 2008-04-08 12
  542. 277 2008-04-08 12
  543. 208 2008-04-08 12
  544. 286 2008-04-08 12
  545. 239 2008-04-08 12
  546. 213 2008-04-08 12
  547. 216 2008-04-08 12
  548. 278 2008-04-08 12
  549. 289 2008-04-08 12
  550. 221 2008-04-08 12
  551. 275 2008-04-08 12
  552. 241 2008-04-08 12
  553. 284 2008-04-08 12
  554. 230 2008-04-08 12
  555. 260 2008-04-08 12
  556. 272 2008-04-08 12
  557. 217 2008-04-08 12
  558. 230 2008-04-08 12
  559. 208 2008-04-08 12
  560. 298 2008-04-08 12
  561. 230 2008-04-08 12
  562. 205 2008-04-08 12
  563. 288 2008-04-08 12
  564. 282 2008-04-08 12
  565. 282 2008-04-08 12
  566. 238 2008-04-08 12
  567. 277 2008-04-08 12
  568. 273 2008-04-08 12
  569. 224 2008-04-08 12
  570. 242 2008-04-08 12
  571. 272 2008-04-08 12
  572. 242 2008-04-08 12
  573. 226 2008-04-08 12
  574. 229 2008-04-08 12
  575. 233 2008-04-08 12
  576. 223 2008-04-08 12
  577. 218 2008-04-08 12
  578. 228 2008-04-08 12
  579. 209 2008-04-08 12
  580. 230 2008-04-08 12
  581. 296 2008-04-08 12
  582. 216 2008-04-08 12
  583. 274 2008-04-08 12
  584. 219 2008-04-08 12
  585. 239 2008-04-08 12
  586. 223 2008-04-08 12
  587. 256 2008-04-08 12
  588. 263 2008-04-08 12
  589. 288 2008-04-08 12
  590. 244 2008-04-08 12
  591. 202 2008-04-08 12
  592. 229 2008-04-08 12
  593. 280 2008-04-08 12
  594. 283 2008-04-08 12
  595. 235 2008-04-08 12
  596. 257 2008-04-08 12
  597. 258 2008-04-08 12
  598. 203 2008-04-08 12
  599. 262 2008-04-08 12
  600. 201 2008-04-08 12
  601. 217 2008-04-08 12
  602. 298 2008-04-08 12
  603. 291 2008-04-08 12
  604. 255 2008-04-08 12
  605. 200 2008-04-08 12
  606. 237 2008-04-08 12
  607. 248 2008-04-08 12
  608. 277 2008-04-08 12
  609. 230 2008-04-08 12
  610. 207 2008-04-08 12
  611. 249 2008-04-08 12
  612. 265 2008-04-08 12
  613. 214 2008-04-08 12
  614. 233 2008-04-08 12
  615. 256 2008-04-08 12
  616. 298 2008-04-08 12
  617. 285 2008-04-08 12
  618. 273 2008-04-08 12
  619. 281 2008-04-08 12
  620. 222 2008-04-08 12
  621. 200 2008-04-08 12
  622. val_311
  623. val_409
  624. val_484
  625. val_401
  626. val_369
  627. val_406
  628. val_429
  629. val_374
  630. val_469
  631. val_495
  632. val_327
  633. val_403
  634. val_417
  635. val_430
  636. val_338
  637. val_446
  638. val_459
  639. val_394
  640. val_482
  641. val_413
  642. val_494
  643. val_466
  644. val_399
  645. val_396
  646. val_417
  647. val_489
  648. val_377
  649. val_397
  650. val_309
  651. val_365
  652. val_439
  653. val_342
  654. val_367
  655. val_325
  656. val_475
  657. val_339
  658. val_455
  659. val_311
  660. val_316
  661. val_302
  662. val_438
  663. val_345
  664. val_489
  665. val_378
  666. val_427
  667. val_356
  668. val_399
  669. val_382
  670. val_498
  671. val_386
  672. val_437
  673. val_469
  674. val_459
  675. val_430
  676. val_318
  677. val_332
  678. val_311
  679. val_333
  680. val_404
  681. val_384
  682. val_489
  683. val_353
  684. val_373
  685. val_348
  686. val_466
  687. val_411
  688. val_348
  689. val_463
  690. val_431
  691. val_496
  692. val_322
  693. val_468
  694. val_393
  695. val_454
  696. val_418
  697. val_327
  698. val_404
  699. val_436
  700. val_469
  701. val_468
  702. val_308
  703. val_481
  704. val_457
  705. val_318
  706. val_318
  707. val_409
  708. val_470
  709. val_369
  710. val_316
  711. val_413
  712. val_490
  713. val_364
  714. val_395
  715. val_419
  716. val_307
  717. val_435
  718. val_306
  719. val_309
  720. val_389
  721. val_327
  722. val_369
  723. val_392
  724. val_331
  725. val_401
  726. val_452
  727. val_497
  728. val_402
  729. val_396
  730. val_317
  731. val_395
  732. val_336
  733. val_472
  734. val_322
  735. val_498
  736. val_321
  737. val_430
  738. val_489
  739. val_458
  740. val_492
  741. val_449
  742. val_453
  743. val_468
  744. val_342
  745. val_368
  746. val_367
  747. val_344
  748. val_485
  749. val_487
  750. val_480
  751. val_401
  752. val_438
  753. val_467
  754. val_432
  755. val_316
  756. val_469
  757. val_463
  758. val_331
  759. val_321
  760. val_335
  761. val_466
  762. val_366
  763. val_403
  764. val_483
  765. val_406
  766. val_409
  767. val_406
  768. val_401
  769. val_348
  770. val_424
  771. val_396
  772. val_431
  773. val_454
  774. val_478
  775. val_431
  776. val_424
  777. val_382
  778. val_397
  779. val_480
  780. val_351
  781. val_438
  782. val_414
  783. val_491
  784. val_439
  785. val_360
  786. val_479
  787. val_305
  788. val_417
  789. val_444
  790. val_429
  791. val_443
  792. val_323
  793. val_325
  794. val_478
  795. val_468
  796. val_310
  797. val_317
  798. val_333
  799. val_493
  800. val_460
  801. val_480
  802. val_353
  803. val_462
  804. val_406
  805. val_454
  806. val_375
  807. val_401
  808. val_421
  809. val_407
  810. val_384
  811. val_384
  812. val_379
  813. val_462
  814. val_492
  815. val_341
  816. val_498
  817. val_458
  818. val_362
  819. val_348
  820. val_344
  821. val_469
  822. val_315
  823. val_448
  824. val_348
  825. val_307
  826. val_414
  827. val_477
  828. val_403
  829. val_400