Skip to content

Instantly share code, notes, and snippets.

@ahodroj
Created April 12, 2016 03:56
Show Gist options
  • Save ahodroj/7e48fe30817ab0ce00c7147b8cc4e3de to your computer and use it in GitHub Desktop.
Save ahodroj/7e48fe30817ab0ce00c7147b8cc4e3de to your computer and use it in GitHub Desktop.
// A SQL query with a user-defined function ADJUSTED_PRICE
// which will return all the stock prices with an adjusted price = 23.2
query = new SQLQuery<Stock>(Stock.class, "ADJUSTED_PRICE(price) = ?", 23.2);
IntValue[] values = gigaSpace.readMultiple(query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment