Return-Path: postman 
Delivery-Date: Sat, 18 Sep 93 15:21:45 PDT
Return-Path: postman
Received: by postgres.Berkeley.EDU (5.61/1.29)
	id AA12477; Sat, 18 Sep 93 15:17:57 -0700
Resent-From: postman (POSTGRES mailing list)
Resent-Message-Id: <9309182217.AA12477@postgres.Berkeley.EDU>
Sender: owner-postman@postgres.Berkeley.EDU
X-Return-Path: dpinkney@remus.ulowell.edu
Received: from remus.uml.edu by postgres.Berkeley.EDU (5.61/1.29)
	id AA12465; Sat, 18 Sep 93 15:17:44 -0700
Received: by remus.ulowell.edu id AA15029
  (5.65c+/IDA-1.4.4 for postgres@postgres.Berkeley.EDU); Sat, 18 Sep 1993 18:18:33 -0400
Date: Sat, 18 Sep 1993 18:18:33 -0400
From: Dave Pinkney <dpinkney@remus.ulowell.edu>
Message-Id: <199309182218.AA15029@remus.ulowell.edu>
To: postgres@postgres.Berkeley.EDU
Subject: uint4 built-in type supported?
Resent-To: postgres-dist
Resent-Date: Sat, 18 Sep 93 15:17:55 PDT


Is the postgres built-in type uint4 (4 byte unsigned long) supported
yet?  I get an error from the backend when I try to use it as a base
type.  

Thanks,

Dave Pinkney
dpinkney@cs.uml.edu



Transcript of session:

Welcome to the C POSTGRES terminal monitor

Go 
* create test_class(name = text, age = uint4) \g

Query sent to backend is "create test_class(name = text, age = uint4) "
WARN:Sep 18 18:10:55:type name lookup of uint4 failed

Go 
* create test_class(name = text, age = uint2) \g

Query sent to backend is "create test_class(name = text, age = uint2) "
WARN:Sep 18 18:11:06:type name lookup of uint2 failed

Go 
* create test_class(name = text, age = int4) \g

Query sent to backend is "create test_class(name = text, age = int4) "
CREATE
Go 
* \q
I live to serve you.
