diff --git a/migtests/tests/pg/assessment-report-test/expectedAssessmentReport.json b/migtests/tests/pg/assessment-report-test/expectedAssessmentReport.json index 735434970..e16e8c848 100644 --- a/migtests/tests/pg/assessment-report-test/expectedAssessmentReport.json +++ b/migtests/tests/pg/assessment-report-test/expectedAssessmentReport.json @@ -162,6 +162,7 @@ "schema2.products", "schema2.foo", "schema2.Case_Sensitive_Columns", + "schema2.employees", "schema2.with_example1", "test_views.xyz_mview", "test_views.view_table2", @@ -169,9 +170,10 @@ "test_views.abc_mview", "test_views.view_table1", "public.library_nested", - "public.orders_lateral" + "public.orders_lateral", + "public.employees" ], - "ColocatedReasoning": "Recommended instance type with 4 vCPU and 16 GiB memory could fit 72 objects (64 tables/materialized views and 8 explicit/implicit indexes) with 0.00 MB size and throughput requirement of 0 reads/sec and 0 writes/sec as colocated. Rest 28 objects (5 tables/materialized views and 23 explicit/implicit indexes) with 0.00 MB size and throughput requirement of 0 reads/sec and 0 writes/sec need to be migrated as range partitioned tables. Non leaf partition tables/indexes and unsupported tables/indexes were not considered.", + "ColocatedReasoning": "Recommended instance type with 4 vCPU and 16 GiB memory could fit 74 objects (66 tables/materialized views and 8 explicit/implicit indexes) with 0.00 MB size and throughput requirement of 0 reads/sec and 0 writes/sec as colocated. Rest 28 objects (5 tables/materialized views and 23 explicit/implicit indexes) with 0.00 MB size and throughput requirement of 0 reads/sec and 0 writes/sec need to be migrated as range partitioned tables. Non leaf partition tables/indexes and unsupported tables/indexes were not considered.", "ShardedTables": [ "public.combined_tbl", "public.citext_type", @@ -561,11 +563,11 @@ "Objects": [ { "ObjectName": "public.top_employees_view", - "SqlStatement": "CREATE VIEW public.top_employees_view AS\n SELECT id,\n first_name,\n last_name,\n salary\n FROM ( SELECT employees.id,\n employees.first_name,\n employees.last_name,\n employees.salary\n FROM public.employees\n ORDER BY employees.salary DESC\n FETCH FIRST 2 ROWS WITH TIES) top_employees;" + "SqlStatement": "CREATE VIEW public.top_employees_view AS\n SELECT top_employees.id,\n top_employees.first_name,\n top_employees.last_name,\n top_employees.salary\n FROM ( SELECT employees.id,\n employees.first_name,\n employees.last_name,\n employees.salary\n FROM public.employees\n ORDER BY employees.salary DESC\n FETCH FIRST 2 ROWS WITH TIES) top_employees;" }, { "ObjectName": "schema2.top_employees_view", - "SqlStatement": "CREATE VIEW schema2.top_employees_view AS\n SELECT id,\n first_name,\n last_name,\n salary\n FROM ( SELECT employees.id,\n employees.first_name,\n employees.last_name,\n employees.salary\n FROM schema2.employees\n ORDER BY employees.salary DESC\n FETCH FIRST 2 ROWS WITH TIES) top_employees;" + "SqlStatement": "CREATE VIEW schema2.top_employees_view AS\n SELECT top_employees.id,\n top_employees.first_name,\n top_employees.last_name,\n top_employees.salary\n FROM ( SELECT employees.id,\n employees.first_name,\n employees.last_name,\n employees.salary\n FROM schema2.employees\n ORDER BY employees.salary DESC\n FETCH FIRST 2 ROWS WITH TIES) top_employees;" } ], "MinimumVersionsFixedIn": null