Skip to content

Commit

Permalink
slip: left outer join
Browse files Browse the repository at this point in the history
  • Loading branch information
hgryoo committed Dec 10, 2024
1 parent 6fbbfe0 commit dccea84
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/object/schema_system_catalog_install_query_spec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1244,9 +1244,11 @@ sm_define_view_stored_procedure_spec (void)
"[sp].[comment] AS [comment] "
"FROM "
/* CT_STORED_PROC_NAME */
"[%s] AS [sp], [%s] AS [sp_code]"
"[%s] AS [sp] "
/* CT_STORED_PROC_CODE_NAME */
"LEFT OUTER JOIN [%s] AS [sp_code] ON [sp].[target_class] = [sp_code].[name] "
"WHERE "
"[sp].[is_system_generated] = 0 AND [sp].[target_class] = [sp_code].[name]",
"[sp].[is_system_generated] = 0",
CT_DATATYPE_NAME,
CT_STORED_PROC_NAME,
CT_STORED_PROC_CODE_NAME);
Expand Down

0 comments on commit dccea84

Please sign in to comment.