Return-Path: mao
Received: by postgres.Berkeley.EDU (5.61/1.29)
	id AA01007; Wed, 27 May 92 08:18:36 -0700
Message-Id: <9205271518.AA01007@postgres.Berkeley.EDU>
From: <mao@postgres.berkeley.edu>
Subject: Re: HELP !!!!!
To: postgres@postgres.berkeley.edu
Sender: pg_adm@postgres.berkeley.edu
In-Reply-To: Your message of Wed, 27 May 92 07:15:43 PST.
             <9205271415.AA00542@postgres.Berkeley.EDU> 
Date: Wed, 27 May 92 08:26:54 PDT

In message <9205271415.AA00542@postgres.Berkeley.EDU> you write:

> Query sent to backend is "retrieve (emp.all) "
>  [ ... ]
> where name=char[], office=char[],  phone=char[], salary=int4
> 
> Postquel:
> ---------
> Problem: It seems that I cannot do strings comparison
> EG:  retrieve (emp.office) where emp.name="ludhi" \g

use type char16 (sixteen-byte fixed-length char string) or text
(variable-length char string, up to 8Kbytes) rather than the
char[] type.  no equality operator is defined between arrays
and strings.
					mike olson
					project sequoia 2000
					uc berkeley
					mao@cs.berkeley.edu
