Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Data Bases > Pgsql General > Re: Functional ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 4 of 7 Topic 15965 of 16554
Post > Topic >>

Re: Functional index adding one

by tgl@[EMAIL PROTECTED] (Tom Lane) Jul 3, 2008 at 11:11 AM

Sam Mason <sam@[EMAIL PROTECTED]
> writes:
> You just want an extra set of brackets; i.e.:

>   CREATE INDEX token_position_func ON token ((position+1));

> Should do the trick.  Not entirely sure why, but it'll probably have
> something to do with avoiding ambiguity in the grammar.

Right.  The problem is the Berkeley-era decision to put index opcl*****
into the syntax without any keyword or punctuation, viz

	create index ... on table (column_name [ opclass_name ]);

So something like

	CREATE INDEX token_position_func ON token (a + b);

is ambiguous: is the + an infix operator, or is it a postfix operator
and the "b" is to be taken as an opclass name?

We hacked around that by requiring parens around expressions.  For
backwards compatibility with other Berkeley-era syntax, there's
a special exception that you can omit the parens when the expression is
just a function call.

			regards, tom lane

-- 
Sent via pgsql-general mailing list (pgsql-general@[EMAIL PROTECTED]
)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general
 




 7 Posts in Topic:
Functional index adding one
lbarcala@[EMAIL PROTECTED  2008-07-03 11:50:39 
Re: Functional index adding one
andreas.kretschmer@[EMAIL  2008-07-03 12:11:20 
Re: Functional index adding one
sam@[EMAIL PROTECTED] (S  2008-07-03 14:19:49 
Re: Functional index adding one
tgl@[EMAIL PROTECTED] (T  2008-07-03 11:11:26 
Re: Functional index adding one
sam@[EMAIL PROTECTED] (S  2008-07-03 17:00:31 
Re: Functional index adding one
stark@[EMAIL PROTECTED]   2008-07-03 14:37:18 
Re: Functional index adding one
stark@[EMAIL PROTECTED]   2008-07-03 15:21:50 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sun Sep 7 1:57:10 CDT 2008.