Hook to allow derived classes to override behavior associated with extracting params from a GString. @param gstring a GString containing the SQL query with embedded params @return extracts the parameters from the expression as a List @see #expand(Object)
(GString gstring)
| 4760 | * @see #expand(Object) |
| 4761 | */ |
| 4762 | protected List<Object> getParameters(GString gstring) { |
| 4763 | return new ArrayList<>(Arrays.asList(gstring.getValues())); |
| 4764 | } |
| 4765 | |
| 4766 | /** |
| 4767 | * Hook to allow derived classes to override behavior associated with |
no test coverage detected