Return-Path: postman 
Delivery-Date: Wed, 22 Sep 93 07:23:54 PDT
Return-Path: postman
Received: by postgres.Berkeley.EDU (5.61/1.29)
	id AA08139; Wed, 22 Sep 93 07:13:39 -0700
Resent-From: postman (POSTGRES mailing list)
Resent-Message-Id: <9309221413.AA08139@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 AA08131; Wed, 22 Sep 93 07:13:31 -0700
Received: by remus.ulowell.edu id AA29667
  (5.65c+/IDA-1.4.4 for postgres@postgres.Berkeley.EDU); Wed, 22 Sep 1993 10:14:44 -0400
From: Dave Pinkney <dpinkney@remus.ulowell.edu>
Message-Id: <199309221414.AA29667@remus.ulowell.edu>
Subject: Does "built-in type" uint4 exist?
To: postgres@postgres.Berkeley.EDU
Date: Wed, 22 Sep 1993 10:14:43 -0400 (EDT)
X-Mailer: ELM [version 2.4 PL22]
Content-Type: text
Content-Length: 821       
Resent-To: postgres-dist
Resent-Date: Wed, 22 Sep 93 07:13:37 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.
 

