File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/com/simplesql/simplesql/config Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
77 defaultConfig {
88 minSdkVersion 11
99 targetSdkVersion 29
10- versionCode 22
11- versionName " 1.0.21 "
10+ versionCode 23
11+ versionName " 1.0.22 "
1212
1313 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1414 consumerProguardFiles ' consumer-rules.pro'
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ public List execute() {
249249 if (functionParameter ) {
250250 if (fields [0 ] == null || fields [0 ].equals ("" ))
251251 columnFunction = "*" ;
252- SQLString = SQLString .replace (KEY_FUNCTION_PARAMETER , fields [0 ]);
252+ SQLString = SQLString .replace ("*" , "" ). replace ( KEY_FUNCTION_PARAMETER , fields [0 ]);
253253 }
254254 SQLString = SQLString + ";" ;
255255 List lstClasses = new ArrayList <>();
You can’t perform that action at this time.
0 commit comments