1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix for netmask('x.x.x.x/0') is 255.255.255.255 instead of 0.0.0.0

This is because (-1) << 32 is -1 (Only intel arc. has been checked)

Oleg Sharoiko
This commit is contained in:
Bruce Momjian
1999-09-23 17:42:23 +00:00
parent 337ab803a2
commit dabc3f31b5
2 changed files with 4 additions and 2 deletions

View File

@ -48,6 +48,7 @@ PARSER
* redesign INSERT ... SELECT to have two levels of target list
* -select * from pg_class where oid in (0,-1)
* have INTERSECT/EXCEPT prevent duplicates unless ALL is specified
* prevent primary key of nine columns(see TODO.detail/primary)
VIEWS