cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
Franck_R
Level III

PostgreSQL function: is it a bug?

Hi,

I have a problem with queries on a PostgreSQL database using the JMP query builder...
Indeed some PostgreSQL functions seem not working properly in the query builder...

For example if I want to retrieve part of a string from the position of one of the character:
this command could ben written in PostgreSQL:

SELECT substring('Thomas' from position('h' in 'Thomas') for 2) AS bug_test

 

But if I write it in "add computed column" in the JMP query builder with the SQL formula editor:

substring('Thomas' from position('h' in 'Thomas') for 2)

I get this error:

bug2.png

whereas this same command is well executed if I write it by hand in SQL Custom:

bug3.png

And in that case it is translated in jsl like other SQL command...

bug4.png

 

What I don't understand is that I can sometimes write complex formulas in query builder's "computed columns" that are in pure PostgreSQL syntax and everything works fine! Like:

bug5.png

This computed column works fine and return no error message. It is however a specific postgresql code...

 

Is this a known bug on some PostgreSQL functions? How to work around it?

Thanks for your help!

 

Franck

2 REPLIES 2

Re: PostgreSQL function: is it a bug?

Add Computed Column has a list of some extensions that it will support for database specific SQL, but postgresql is not one of them.  By default you probably are getting Generic SQL in the dropdown at the upper left of the formula editor.  There are some extensions supported for Oracle, MySQL, SQL Server, SAS etc. 

 

We will need to consider a postgresql specific extension set for a future version of JMP.

 

Brian Corcoran

JMP Development

 

Franck_R
Level III

Re: PostgreSQL function: is it a bug?

Hello Brian

Thanks for your answer

What is strange for me is that for example the "lpad" or "to char" functions are specific syntax from PostgreSQL, not some generic SQL or Oracle SQL,... and works very well:

t2.lot_id || '-' || lpad(to_char(t2.wafer_nr, 'FM999'), 2, '0')