forcedotcom / phoenix

BSD 3-Clause "New" or "Revised" License
558 stars 227 forks source link

Support UPSERT of array values using ARRAY syntax #644

Closed jtaylor-sfdc closed 10 years ago

jtaylor-sfdc commented 10 years ago

Examples would include:

UPSERT INTO my_table (first_name, last_name, my_array)
VALUES ('John','Smith',ARRAY[25000,25000,27000,27000]);

UPSERT INTO my_table (first_name, last_name, my_array)
SELECT first_name,last_name, ARRAY[25000,25000,27000,27000]);
ramkrish86 commented 10 years ago

Thanks James. Will take this up once my current activities are done.

ramkrish86 commented 10 years ago

Thanks James. Will take this up once my current activities are done.

jtaylor-sfdc commented 10 years ago

Fixed by @ramkrish86. Thanks for the excellent work!