@@ -1230,4 +1230,60 @@ SELECT CONCAT()
1230
1230
MariaStan\Parser\Exception\ParserException
1231
1231
Function CONCAT takes at least 1 argument, got 0.
1232
1232
#####
1233
- 1582: Incorrect parameter count in the call to native function 'CONCAT'
1233
+ 1582: Incorrect parameter count in the call to native function 'CONCAT'
1234
+ -----
1235
+ SELECT LOWER()
1236
+ -----
1237
+ MariaStan\Parser\Exception\ParserException
1238
+ Function LOWER takes 1 argument, got 0.
1239
+ #####
1240
+ 1582: Incorrect parameter count in the call to native function 'LOWER'
1241
+ -----
1242
+ SELECT LCASE()
1243
+ -----
1244
+ MariaStan\Parser\Exception\ParserException
1245
+ Function LCASE takes 1 argument, got 0.
1246
+ #####
1247
+ 1582: Incorrect parameter count in the call to native function 'LCASE'
1248
+ -----
1249
+ SELECT UPPER()
1250
+ -----
1251
+ MariaStan\Parser\Exception\ParserException
1252
+ Function UPPER takes 1 argument, got 0.
1253
+ #####
1254
+ 1582: Incorrect parameter count in the call to native function 'UPPER'
1255
+ -----
1256
+ SELECT UCASE()
1257
+ -----
1258
+ MariaStan\Parser\Exception\ParserException
1259
+ Function UCASE takes 1 argument, got 0.
1260
+ #####
1261
+ 1582: Incorrect parameter count in the call to native function 'UCASE'
1262
+ -----
1263
+ SELECT LOWER(1, 2)
1264
+ -----
1265
+ MariaStan\Parser\Exception\ParserException
1266
+ Function LOWER takes 1 argument, got 2.
1267
+ #####
1268
+ 1582: Incorrect parameter count in the call to native function 'LOWER'
1269
+ -----
1270
+ SELECT LCASE(1, 2)
1271
+ -----
1272
+ MariaStan\Parser\Exception\ParserException
1273
+ Function LCASE takes 1 argument, got 2.
1274
+ #####
1275
+ 1582: Incorrect parameter count in the call to native function 'LCASE'
1276
+ -----
1277
+ SELECT UPPER(1, 2)
1278
+ -----
1279
+ MariaStan\Parser\Exception\ParserException
1280
+ Function UPPER takes 1 argument, got 2.
1281
+ #####
1282
+ 1582: Incorrect parameter count in the call to native function 'UPPER'
1283
+ -----
1284
+ SELECT UCASE(1, 2)
1285
+ -----
1286
+ MariaStan\Parser\Exception\ParserException
1287
+ Function UCASE takes 1 argument, got 2.
1288
+ #####
1289
+ 1582: Incorrect parameter count in the call to native function 'UCASE'
0 commit comments