Lines Matching refs:owner

39 "           list instead of the table name and owner (if specified).
42 " for the owner name when looking up the table
43 " list instead of the table name and owner (if specified).
163 " include the owner name
168 " New to dbext 3.00, by default the table lists include the owner
239 " to the owner name (if included).
298 " the owner/creator should be included in the list
334 let owner = ''
338 " Check if the owner/creator has been specified
339 let owner = matchstr( base, '^\zs.*\ze\..*\..*' )
343 if g:omni_sql_include_owner == 1 && owner == '' && table != '' && column != ''
344 let owner = table
351 " owner.table
359 " this will be owner.table. In this case, we can
363 " owner.table, not table.column_prefix.
365 if g:omni_sql_include_owner == 1 && owner == ''
372 " the owner was not provided and shift the items appropriately.
378 " let owner = table
416 " If an owner has been specified, then we must consider the
434 " with different owner names.
435 if g:omni_sql_include_owner == 1 && owner != '' && table != ''
436 let compl_list = s:SQLCGetColumns(owner.'.'.table, list_type)
446 if owner != ''
447 " If an owner has been provided append it to each of the
449 let compl_list = map(compl_list, 'owner.".".v:val')
508 " Match to a owner.table or alias.column type match
714 " Strip off the owner if included
764 " The owner regex matches a word at the start of the string which is
769 " .\{-} - get owner name
773 " let owner = matchstr( a:object, '^\s*\zs.*\ze\.' )
774 let owner = matchstr( a:object, '^\("\|\[\)\?\zs\.\{-}\ze\("\|\]\)\?\.' )
775 return owner
780 " Check if the owner/creator has been specified
781 let owner = matchstr( a:table_name, '^\zs.*\ze\..*\..*' )
785 if g:omni_sql_include_owner == 1 && owner == '' && table != '' && column != ''
786 let owner = table
791 let owner = ''
879 " '\zs\(\(\<\w\+\>\)\.\)\?' - Get the owner name (optional)
899 " '\zs\(\("\|\[\)\?\w\+\("\|\]\)\?\.\)\?' - Get the owner name (optional)
967 let table_cols_str = DB_getListColumn((owner!=''?owner.'.':'').table_name, 1, 1)