mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
fix bug frmLog
This commit is contained in:
parent
f434a890fe
commit
eee87648bf
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ void MyThread::getFilename() {
|
|||
wxString sql = wxString::Format(
|
||||
"select * from ( \
|
||||
select current_setting('log_directory') || '/' || name filename, modification filetime, size len \
|
||||
FROM pg_ls_logdir() where name ~ %s ORDER BY modification DESC limit %d) l order by filetime ASC", po->conn->qtDbString(mask), limitfiles
|
||||
FROM pg_ls_logdir() where name ~ %s and name !~'db.csv$' ORDER BY modification DESC limit %d) l order by filetime ASC", po->conn->qtDbString(mask), limitfiles
|
||||
);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue