5 lines
267 B
Pig
5 lines
267 B
Pig
-- load a table that was previously saved
|
|
sys = load 'datasets="Testing Notebook" tables="test_load_filter_store"' using BeansTable();
|
|
-- store the loaded table to check if it lads correctly
|
|
store sys into 'name="TEST_LOAD_BY_NAME_FROM_NOTEBOOK"' using BeansTable();
|