Public bug reported:
In batch mode, if the input line is greater than 64 characters, the first 64
characters are lost.
In my case:
$isql-fb < test.sql
the input file of:
SET ECHO ON;
SELECT
dt.*
FROM
Table_10 t10
JOIN (SELECT * FROM Table_10 t2 WHERE t2.ID = t10.ID) dt ON (1 = 1);
Ok here is a simple program showing the problem.
It is actually the testit.c program distributed with libeditline,
$make
$./run.sh
essentiallty it does
$./testit < test.txt
Where test.txt has lines over 64 character long.
Cheers - Mark
** Attachment added: "Test program to reproduce trunca
The buffer in editline.c
STATIC char* read_redirected()
is 64 characters long, when it get to the end of 64 characters it does:
if (p == end) {
size += MEM_INC;
p = line = realloc(line, size);
end = p + size;
}
So 'p' which is where it i
Hi
I also have the same problem, with my laptop and the extended desktop,
mouse movements on the extended desktop do not stop the screensaver from
activating.
I am using laptop with external monitor as extended desktop and AGP
Radeons their fglrx driver.
I've also attached my xorg.conf file in
This also happens with entering using authentication via the gui proxy settings.
My understanding was that in apt.conf it should work if you URL encode
the @ sign ie:
http_proxy=http://user:[EMAIL PROTECTED]:9080
But entering this via the gui or by directly adding it to apt.conf did
not work.