Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Partition should not be across column name but a full table set.
  • Loading branch information
LUKASZ104 authored and LUKASZ104 committed May 8, 2019
commit 525da0238d616a80c5043825bfa1a1e233742ee3
2 changes: 1 addition & 1 deletion source/expectations/data_values/ut_cursor_details.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ create or replace type body ut_cursor_details as
for i in (
select parent_name, access_path, display_path, has_nested_col,
transformed_name, hierarchy_level,
row_number() over (partition by parent_name,transformed_name order by column_position) as new_position, xml_valid_name,
row_number() over (order by column_position) as new_position, xml_valid_name,
column_name, column_type, column_type_name, column_schema,
column_len, column_precision ,column_scale ,is_sql_diffable, is_collection,value(x) col_info
from table(l_result.cursor_columns_info) x
Expand Down