Skip to content

Fixing join in DBListColumns #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
10 changes: 5 additions & 5 deletions autoload/dbext.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ function! s:DB_varToString(name)
endif
endfunction

"FIXME: Csin�lni kell erre egy kommandot.
"FIXME: Csin�lni kell erre egy kommandot.
function! s:DB_getParameters(scope)
"scope must be 'b', 'g', 'd' (buffer, global, default)
if (a:scope == "b")
Expand Down Expand Up @@ -2209,9 +2209,9 @@ function! s:DB_DB2_execSql(str)
" In batch files I used the following
" -c close when done
" -w wait until command finishes
" -i don�t spawn a new cmd window
" -t don�t change the window title
" db2cmd -c -w -i �t �db2 -s -t ; -v -f dave.sql�
" -i don�t spawn a new cmd window
" -t don�t change the window title
" db2cmd -c -w -i �t �db2 -s -t ; -v -f dave.sql�
" To see command line options
" cd IBM\SQLLIB\BIN
" db2cmd -w -i
Expand Down Expand Up @@ -3224,7 +3224,7 @@ function! s:DB_PGSQL_getListColumn(table_name)
let table_name = s:DB_getObjectName(a:table_name)
let query = "SELECT a.attname " .
\ " FROM pg_class c, pg_attribute a " .
\ " WHERE c.relfilenode = a.attrelid " .
\ " WHERE c.oid = a.attrelid " .
\ " AND a.attnum > 0 " .
\ " AND c.relname = '" . table_name . "'"

Expand Down