Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
makalaaneesh committed Dec 27, 2024
1 parent 0037cea commit 2d8eec2
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,18 @@
"schema2.products",
"schema2.foo",
"schema2.Case_Sensitive_Columns",
"schema2.employees",
"schema2.with_example1",
"test_views.xyz_mview",
"test_views.view_table2",
"test_views.mv1",
"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",
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2d8eec2

Please sign in to comment.