Using regoper type with OPERATOR() - Mailing list pgsql-novice

From Tony Theodore
Subject Using regoper type with OPERATOR()
Date
Msg-id CAJFv53puidmExYw9zsiSaKxLy3nJfksL21YNQ013UMqc=O=hSg@mail.gmail.com
Whole thread Raw
Responses Re: Using regoper type with OPERATOR()  (Gavin Flower <GavinFlower@archidevsys.co.nz>)
List pgsql-novice
Hello,

Say I have a discount table that stores either percentages or dollar
amounts, and I'd like to save the operator to be used in a
calculation. I started with a text field and CASE statement, but then
found the operator types that seem more useful:

CREATE TABLE discounts(price float, disc float, disc_oper regoperator);
INSERT INTO discounts VALUES
        (100, .1, '*(float, float)'),
        (100, 10, '-(float, float)');

so I could use a query like:

SELECT price OPERATOR(disc_oper::regoper) disc AS disc_amount FROM discounts

This doesn't work however, and I'm not sure why. I think I'm missing
something simple since:

SELECT disc_oper::regoper FROM discounts;
  disc_oper
--------------
 pg_catalog.*
 pg_catalog.-
(2 rows)

and

SELECT 100 OPERATOR(pg_catalog.*) .1;

make me think I'm very close.

Any help appreciated.

Thanks,

Tony

pgsql-novice by date:

Previous
From: Tom Lane
Date:
Subject: Re: how does LDFLAGS work?
Next
From: Tony Theodore
Date:
Subject: Re: Using regoper type with OPERATOR()