[BUGS] Problem with inet/cidr convert functions

2001-02-05 Thread Vadim I. Passynkov
Hi All, This is not working test=# select rpad ( host ( '127.0.0.1' ), 15 ); rpad --- 127.0.0.1 (1 row) This working OK test=# select rpad ( host ( '127.0.0.1' ) || '', 15 ); rpad - 127.0.0.1 (1 row) Other examples test=# select now() where

Re: [BUGS] Problem with inet/cidr convert functions

2001-01-29 Thread Tom Lane
"Vadim I. Passynkov" <[EMAIL PROTECTED]> writes: > test=# select rpad ( host ( '127.0.0.1' ), 15 ); >rpad > --- > 127.0.0.1 > (1 row) This is fixed in current sources (7.1beta4). regards, tom lane

[BUGS] Problem with inet/cidr convert functions

2001-01-29 Thread Vadim I. Passynkov
Hi All, This is not working test=# select rpad ( host ( '127.0.0.1' ), 15 ); rpad --- 127.0.0.1 (1 row) This working OK test=# select rpad ( host ( '127.0.0.1' ) || '', 15 ); rpad - 127.0.0.1 (1 row) Other examples test=# select now() where