8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 14:03:07 +01:00

Try to indicate position of incomplete commands.

Some casts because statuses are fixed 32 quantities, not natural int types.
This commit is contained in:
robocop 2005-06-16 05:11:08 +00:00
parent 40de739722
commit e28ed6b27c
7 changed files with 7821 additions and 9379 deletions

View File

@ -5077,9 +5077,9 @@ static void modify_domain( dsql_req* request)
{
ERRD_post(isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_command_end_err2, // Unexpected end of command
isc_arg_number, domain_node->nod_line,
isc_arg_number, (SLONG) domain_node->nod_line,
isc_arg_number,
domain_node->nod_column + domain_name->str_length + strlen(" DEFAULT"),
(SLONG) domain_node->nod_column + domain_name->str_length + strlen(" DEFAULT"),
0);
}
// CVC End modification.
@ -5557,9 +5557,9 @@ static void modify_udf(dsql_req* request)
if (!node->nod_arg[e_mod_udf_entry_pt] && !node->nod_arg[e_mod_udf_module])
ERRD_post(isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_command_end_err2, // Unexpected end of command
isc_arg_number, node->nod_line,
isc_arg_number, (SLONG) node->nod_line,
isc_arg_number,
node->nod_column + obj_name->str_length, // + strlen("FUNCTION"),
(SLONG) node->nod_column + obj_name->str_length, // + strlen("FUNCTION"),
0);
request->append_cstring(isc_dyn_mod_function, obj_name->str_data);

View File

@ -1338,7 +1338,7 @@ ISC_STATUS GDS_DSQL_PREPARE_CPP(ISC_STATUS* user_status,
ERRD_post(isc_sqlerr, isc_arg_number, (SLONG) - 104,
isc_arg_gds, isc_command_end_err2,
// CVC: Nothing will be line 1, column 1 for the user.
isc_arg_number, 1, isc_arg_number, 1,
isc_arg_number, (SLONG) 1, isc_arg_number, (SLONG) 1,
0); // Unexpected end of command
}

View File

@ -1,276 +1,288 @@
#define ACTIVE 257
#define ADD 258
#define AFTER 259
#define ALL 260
#define ALTER 261
#define AND 262
#define ANY 263
#define AS 264
#define ASC 265
#define AT 266
#define AVG 267
#define AUTO 268
#define BEFORE 269
#define BEGIN 270
#define BETWEEN 271
#define BLOB 272
#define BY 273
#define CAST 274
#define CHARACTER 275
#define CHECK 276
#define COLLATE 277
#define COMMA 278
#define COMMIT 279
#define COMMITTED 280
#define COMPUTED 281
#define CONCATENATE 282
#define CONDITIONAL 283
#define CONSTRAINT 284
#define CONTAINING 285
#define COUNT 286
#define CREATE 287
#define CSTRING 288
#define CURRENT 289
#define CURSOR 290
#define DATABASE 291
#define DATE 292
#define DB_KEY 293
#define KW_DEBUG 294
#define DECIMAL 295
#define DECLARE 296
#define DEFAULT 297
#define KW_DELETE 298
#define DESC 299
#define DISTINCT 300
#define DO 301
#define DOMAIN 302
#define DROP 303
#define ELSE 304
#define END 305
#define ENTRY_POINT 306
#define EQL 307
#define ESCAPE 308
#define EXCEPTION 309
#define EXECUTE 310
#define EXISTS 311
#define EXIT 312
#define EXTERNAL 313
#define FILTER 314
#define FOR 315
#define FOREIGN 316
#define FROM 317
#define FULL 318
#define FUNCTION 319
#define GDSCODE 320
#define GEQ 321
#define GENERATOR 322
#define GEN_ID 323
#define GRANT 324
#define GROUP 325
#define GTR 326
#define HAVING 327
#define IF 328
#define KW_IN 329
#define INACTIVE 330
#define INNER 331
#define INPUT_TYPE 332
#define INDEX 333
#define INSERT 334
#define INTEGER 335
#define INTO 336
#define IS 337
#define ISOLATION 338
#define JOIN 339
#define KEY 340
#define KW_CHAR 341
#define KW_DEC 342
#define KW_DOUBLE 343
#define KW_FILE 344
#define KW_FLOAT 345
#define KW_INT 346
#define KW_LONG 347
#define KW_NULL 348
#define KW_NUMERIC 349
#define KW_UPPER 350
#define KW_VALUE 351
#define LENGTH 352
#define LPAREN 353
#define LEFT 354
#define LEQ 355
#define LEVEL 356
#define LIKE 357
#define LSS 358
#define MANUAL 359
#define MAXIMUM 360
#define MAX_SEGMENT 361
#define MERGE 362
#define MESSAGE 363
#define MINIMUM 364
#define MODULE_NAME 365
#define NAMES 366
#define NATIONAL 367
#define NATURAL 368
#define NCHAR 369
#define NEQ 370
#define NO 371
#define NOT 372
#define NOT_GTR 373
#define NOT_LSS 374
#define OF 375
#define ON 376
#define ONLY 377
#define OPTION 378
#define OR 379
#define ORDER 380
#define OUTER 381
#define OUTPUT_TYPE 382
#define OVERFLOW 383
#define PAGE 384
#define PAGES 385
#define KW_PAGE_SIZE 386
#define PARAMETER 387
#define PASSWORD 388
#define PLAN 389
#define POSITION 390
#define POST_EVENT 391
#define PRECISION 392
#define PRIMARY 393
#define PRIVILEGES 394
#define PROCEDURE 395
#define PROTECTED 396
#define READ 397
#define REAL 398
#define REFERENCES 399
#define RESERVING 400
#define RETAIN 401
#define RETURNING_VALUES 402
#define RETURNS 403
#define REVOKE 404
#define RIGHT 405
#define RPAREN 406
#define ROLLBACK 407
#define SEGMENT 408
#define SELECT 409
#define SET 410
#define SHADOW 411
#define KW_SHARED 412
#define SINGULAR 413
#define KW_SIZE 414
#define SMALLINT 415
#define SNAPSHOT 416
#define SOME 417
#define SORT 418
#define SQLCODE 419
#define STABILITY 420
#define STARTING 421
#define STATISTICS 422
#define SUB_TYPE 423
#define SUSPEND 424
#define SUM 425
#define TABLE 426
#define THEN 427
#define TO 428
#define TRANSACTION 429
#define TRIGGER 430
#define UNCOMMITTED 431
#define UNION 432
#define UNIQUE 433
#define UPDATE 434
#define USER 435
#define VALUES 436
#define VARCHAR 437
#define VARIABLE 438
#define VARYING 439
#define VERSION 440
#define VIEW 441
#define WAIT 442
#define WHEN 443
#define WHERE 444
#define WHILE 445
#define WITH 446
#define WORK 447
#define WRITE 448
#define FLOAT_NUMBER 449
#define NUMBER 450
#define NUMERIC 451
#define SYMBOL 452
#define STRING 453
#define INTRODUCER 454
#define ACTION 455
#define ADMIN 456
#define CASCADE 457
#define FREE_IT 458
#define RESTRICT 459
#define ROLE 460
#define COLUMN 461
#define TYPE 462
#define EXTRACT 463
#define YEAR 464
#define MONTH 465
#define DAY 466
#define HOUR 467
#define MINUTE 468
#define SECOND 469
#define WEEKDAY 470
#define YEARDAY 471
#define TIME 472
#define TIMESTAMP 473
#define CURRENT_DATE 474
#define CURRENT_TIME 475
#define CURRENT_TIMESTAMP 476
#define NUMBER64BIT 477
#define SCALEDINT 478
#define CURRENT_USER 479
#define CURRENT_ROLE 480
#define KW_BREAK 481
#define SUBSTRING 482
#define RECREATE 483
#define KW_DESCRIPTOR 484
#define FIRST 485
#define SKIP 486
#define CURRENT_CONNECTION 487
#define CURRENT_TRANSACTION 488
#define BIGINT 489
#define CASE 490
#define NULLIF 491
#define COALESCE 492
#define USING 493
#define NULLS 494
#define LAST 495
#define ROW_COUNT 496
#define LOCK 497
#define SAVEPOINT 498
#define RELEASE 499
#define STATEMENT 500
#define LEAVE 501
#define INSERTING 502
#define UPDATING 503
#define DELETING 504
#define KW_INSERTING 505
#define KW_UPDATING 506
#define KW_DELETING 507
#define BACKUP 508
#define KW_DIFFERENCE 509
#define OPEN 510
#define CLOSE 511
#define FETCH 512
#define ROWS 513
#define BLOCK 514
#define IIF 515
#define SCALAR_ARRAY 516
#define CROSS 517
#define NEXT 518
#define SEQUENCE 519
#define RESTART 520
#define BOTH 521
#define COLLATION 522
#define COMMENT 523
#define BIT_LENGTH 524
#define CHAR_LENGTH 525
#define CHARACTER_LENGTH 526
#define LEADING 527
#define KW_LOWER 528
#define OCTET_LENGTH 529
#define TRAILING 530
#define TRIM 531
#define RETURNING 532
#ifndef BISON_DSQL_TAB_H
# define BISON_DSQL_TAB_H
# ifndef YYSTYPE
# define YYSTYPE int
# define YYSTYPE_IS_TRIVIAL 1
# endif
# define ACTIVE 257
# define ADD 258
# define AFTER 259
# define ALL 260
# define ALTER 261
# define AND 262
# define ANY 263
# define AS 264
# define ASC 265
# define AT 266
# define AVG 267
# define AUTO 268
# define BEFORE 269
# define BEGIN 270
# define BETWEEN 271
# define BLOB 272
# define BY 273
# define CAST 274
# define CHARACTER 275
# define CHECK 276
# define COLLATE 277
# define COMMA 278
# define COMMIT 279
# define COMMITTED 280
# define COMPUTED 281
# define CONCATENATE 282
# define CONDITIONAL 283
# define CONSTRAINT 284
# define CONTAINING 285
# define COUNT 286
# define CREATE 287
# define CSTRING 288
# define CURRENT 289
# define CURSOR 290
# define DATABASE 291
# define DATE 292
# define DB_KEY 293
# define KW_DEBUG 294
# define DECIMAL 295
# define DECLARE 296
# define DEFAULT 297
# define KW_DELETE 298
# define DESC 299
# define DISTINCT 300
# define DO 301
# define DOMAIN 302
# define DROP 303
# define ELSE 304
# define END 305
# define ENTRY_POINT 306
# define EQL 307
# define ESCAPE 308
# define EXCEPTION 309
# define EXECUTE 310
# define EXISTS 311
# define EXIT 312
# define EXTERNAL 313
# define FILTER 314
# define FOR 315
# define FOREIGN 316
# define FROM 317
# define FULL 318
# define FUNCTION 319
# define GDSCODE 320
# define GEQ 321
# define GENERATOR 322
# define GEN_ID 323
# define GRANT 324
# define GROUP 325
# define GTR 326
# define HAVING 327
# define IF 328
# define KW_IN 329
# define INACTIVE 330
# define INNER 331
# define INPUT_TYPE 332
# define INDEX 333
# define INSERT 334
# define INTEGER 335
# define INTO 336
# define IS 337
# define ISOLATION 338
# define JOIN 339
# define KEY 340
# define KW_CHAR 341
# define KW_DEC 342
# define KW_DOUBLE 343
# define KW_FILE 344
# define KW_FLOAT 345
# define KW_INT 346
# define KW_LONG 347
# define KW_NULL 348
# define KW_NUMERIC 349
# define KW_UPPER 350
# define KW_VALUE 351
# define LENGTH 352
# define LPAREN 353
# define LEFT 354
# define LEQ 355
# define LEVEL 356
# define LIKE 357
# define LSS 358
# define MANUAL 359
# define MAXIMUM 360
# define MAX_SEGMENT 361
# define MERGE 362
# define MESSAGE 363
# define MINIMUM 364
# define MODULE_NAME 365
# define NAMES 366
# define NATIONAL 367
# define NATURAL 368
# define NCHAR 369
# define NEQ 370
# define NO 371
# define NOT 372
# define NOT_GTR 373
# define NOT_LSS 374
# define OF 375
# define ON 376
# define ONLY 377
# define OPTION 378
# define OR 379
# define ORDER 380
# define OUTER 381
# define OUTPUT_TYPE 382
# define OVERFLOW 383
# define PAGE 384
# define PAGES 385
# define KW_PAGE_SIZE 386
# define PARAMETER 387
# define PASSWORD 388
# define PLAN 389
# define POSITION 390
# define POST_EVENT 391
# define PRECISION 392
# define PRIMARY 393
# define PRIVILEGES 394
# define PROCEDURE 395
# define PROTECTED 396
# define READ 397
# define REAL 398
# define REFERENCES 399
# define RESERVING 400
# define RETAIN 401
# define RETURNING_VALUES 402
# define RETURNS 403
# define REVOKE 404
# define RIGHT 405
# define RPAREN 406
# define ROLLBACK 407
# define SEGMENT 408
# define SELECT 409
# define SET 410
# define SHADOW 411
# define KW_SHARED 412
# define SINGULAR 413
# define KW_SIZE 414
# define SMALLINT 415
# define SNAPSHOT 416
# define SOME 417
# define SORT 418
# define SQLCODE 419
# define STABILITY 420
# define STARTING 421
# define STATISTICS 422
# define SUB_TYPE 423
# define SUSPEND 424
# define SUM 425
# define TABLE 426
# define THEN 427
# define TO 428
# define TRANSACTION 429
# define TRIGGER 430
# define UNCOMMITTED 431
# define UNION 432
# define UNIQUE 433
# define UPDATE 434
# define USER 435
# define VALUES 436
# define VARCHAR 437
# define VARIABLE 438
# define VARYING 439
# define VERSION 440
# define VIEW 441
# define WAIT 442
# define WHEN 443
# define WHERE 444
# define WHILE 445
# define WITH 446
# define WORK 447
# define WRITE 448
# define FLOAT_NUMBER 449
# define NUMBER 450
# define NUMERIC 451
# define SYMBOL 452
# define STRING 453
# define INTRODUCER 454
# define ACTION 455
# define ADMIN 456
# define CASCADE 457
# define FREE_IT 458
# define RESTRICT 459
# define ROLE 460
# define COLUMN 461
# define TYPE 462
# define EXTRACT 463
# define YEAR 464
# define MONTH 465
# define DAY 466
# define HOUR 467
# define MINUTE 468
# define SECOND 469
# define WEEKDAY 470
# define YEARDAY 471
# define TIME 472
# define TIMESTAMP 473
# define CURRENT_DATE 474
# define CURRENT_TIME 475
# define CURRENT_TIMESTAMP 476
# define NUMBER64BIT 477
# define SCALEDINT 478
# define CURRENT_USER 479
# define CURRENT_ROLE 480
# define KW_BREAK 481
# define SUBSTRING 482
# define RECREATE 483
# define KW_DESCRIPTOR 484
# define FIRST 485
# define SKIP 486
# define CURRENT_CONNECTION 487
# define CURRENT_TRANSACTION 488
# define BIGINT 489
# define CASE 490
# define NULLIF 491
# define COALESCE 492
# define USING 493
# define NULLS 494
# define LAST 495
# define ROW_COUNT 496
# define LOCK 497
# define SAVEPOINT 498
# define RELEASE 499
# define STATEMENT 500
# define LEAVE 501
# define INSERTING 502
# define UPDATING 503
# define DELETING 504
# define KW_INSERTING 505
# define KW_UPDATING 506
# define KW_DELETING 507
# define BACKUP 508
# define KW_DIFFERENCE 509
# define OPEN 510
# define CLOSE 511
# define FETCH 512
# define ROWS 513
# define BLOCK 514
# define IIF 515
# define SCALAR_ARRAY 516
# define CROSS 517
# define NEXT 518
# define SEQUENCE 519
# define RESTART 520
# define BOTH 521
# define COLLATION 522
# define COMMENT 523
# define BIT_LENGTH 524
# define CHAR_LENGTH 525
# define CHARACTER_LENGTH 526
# define LEADING 527
# define KW_LOWER 528
# define OCTET_LENGTH 529
# define TRAILING 530
# define TRIM 531
# define RETURNING 532
extern YYSTYPE yylval;
#endif /* not BISON_DSQL_TAB_H */

View File

@ -628,7 +628,7 @@ void GEN_port( dsql_req* request, dsql_msg* message)
ERRD_post(isc_sqlerr, isc_arg_number, (SLONG) - 804,
isc_arg_gds, isc_dsql_datatype_err,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, request->req_client_dialect,
isc_arg_number, (SLONG) request->req_client_dialect,
isc_arg_string,
DSC_dtype_tostring(parameter->par_desc.dsc_dtype),
0);
@ -1755,7 +1755,7 @@ static void gen_field( dsql_req* request, const dsql_ctx* context,
ERRD_post(isc_sqlerr, isc_arg_number, (SLONG) - 804,
isc_arg_gds, isc_dsql_datatype_err,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, request->req_client_dialect,
isc_arg_number, (SLONG) request->req_client_dialect,
isc_arg_string,
DSC_dtype_tostring(static_cast < UCHAR >
(field->fld_dtype)), 0);

File diff suppressed because it is too large Load Diff

View File

@ -2312,13 +2312,13 @@ non_charset_simple_type : national_character_type
if (client_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, client_dialect,
isc_arg_number, (SLONG) client_dialect,
isc_arg_string, "BIGINT",
0);
if (db_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_db_dialect_dtype_unsupport,
isc_arg_number, db_dialect,
isc_arg_number, (SLONG) db_dialect,
isc_arg_string, "BIGINT",
0);
lex.g_field->fld_dtype = dtype_int64;
@ -2358,13 +2358,13 @@ non_charset_simple_type : national_character_type
if (client_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, client_dialect,
isc_arg_number, (SLONG) client_dialect,
isc_arg_string, "TIME",
0);
if (db_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_db_dialect_dtype_unsupport,
isc_arg_number, db_dialect,
isc_arg_number, (SLONG) db_dialect,
isc_arg_string, "TIME",
0);
lex.g_field->fld_dtype = dtype_sql_time;
@ -3775,13 +3775,13 @@ datetime_value_expression : CURRENT_DATE
if (client_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, client_dialect,
isc_arg_number, (SLONG) client_dialect,
isc_arg_string, "DATE",
0);
if (db_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_db_dialect_dtype_unsupport,
isc_arg_number, db_dialect,
isc_arg_number, (SLONG) db_dialect,
isc_arg_string, "DATE",
0);
$$ = make_node (nod_current_date, 0, NULL);
@ -3791,13 +3791,13 @@ datetime_value_expression : CURRENT_DATE
if (client_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, client_dialect,
isc_arg_number, (SLONG) client_dialect,
isc_arg_string, "TIME",
0);
if (db_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_db_dialect_dtype_unsupport,
isc_arg_number, db_dialect,
isc_arg_number, (SLONG) db_dialect,
isc_arg_string, "TIME",
0);
$$ = make_node (nod_current_time, 0, NULL);
@ -3840,13 +3840,13 @@ u_constant : u_numeric_constant
if (client_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, client_dialect,
isc_arg_number, (SLONG) client_dialect,
isc_arg_string, "DATE",
0);
if (db_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_db_dialect_dtype_unsupport,
isc_arg_number, db_dialect,
isc_arg_number, (SLONG) db_dialect,
isc_arg_string, "DATE",
0);
$$ = MAKE_constant ((dsql_str*) $2, CONSTANT_DATE);
@ -3856,13 +3856,13 @@ u_constant : u_numeric_constant
if (client_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_dialect_datatype_unsupport,
isc_arg_number, client_dialect,
isc_arg_number, (SLONG) client_dialect,
isc_arg_string, "TIME",
0);
if (db_dialect < SQL_DIALECT_V6_TRANSITION)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_sql_db_dialect_dtype_unsupport,
isc_arg_number, db_dialect,
isc_arg_number, (SLONG) db_dialect,
isc_arg_string, "TIME",
0);
$$ = MAKE_constant ((dsql_str*) $2, CONSTANT_TIME);
@ -4510,10 +4510,12 @@ static dsql_nod* make_list (dsql_nod* node)
stack_nodes(node, stack);
USHORT l = stack.getCount();
dsql_nod* old = node;
const dsql_nod* old = node;
node = FB_NEW_RPT(*tdsql->getDefaultPool(), l) dsql_nod;
node->nod_count = l;
node->nod_type = nod_list;
node->nod_line = (USHORT) lex.lines_bk;
node->nod_column = (USHORT) (lex.last_token_bk - lex.line_start_bk + 1);
if (MemoryPool::blk_type(old) == dsql_type_nod)
{
node->nod_flags = old->nod_flags;
@ -5370,8 +5372,8 @@ static void yyerror(const TEXT* error_string)
if (yychar < 1)
ERRD_post (isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_command_end_err2, /* Unexpected end of command */
isc_arg_number, lex.lines,
isc_arg_number, lex.last_token - lex.line_start + 1,
isc_arg_number, (SLONG) lex.lines,
isc_arg_number, (SLONG) (lex.last_token - lex.line_start + 1),
0);
else
{

View File

@ -4156,7 +4156,7 @@ static dsql_nod* pass1_field( dsql_req* request, dsql_nod* input,
isc_arg_string, field->fld_name,
isc_arg_gds,
isc_sql_dialect_datatype_unsupport,
isc_arg_number, request->req_client_dialect,
isc_arg_number, (SLONG) request->req_client_dialect,
isc_arg_string,
DSC_dtype_tostring(static_cast<UCHAR>
(field->fld_dtype)), 0);
@ -5955,9 +5955,14 @@ static dsql_nod* pass1_returning(dsql_req* request,
}
else if (proc_flag && !target)
{
// This trick because we don't copy lexer positions when copying lists.
const dsql_nod* errSrc = input->nod_arg[e_ret_source];
fb_assert(errSrc->nod_type == nod_list);
// RETURNING without INTO is not allowed for PSQL
ERRD_post(isc_sqlerr, isc_arg_number, (SLONG) -104,
isc_arg_gds, isc_command_end_err, // Unexpected end of command
isc_arg_gds, isc_command_end_err2, // Unexpected end of command
isc_arg_number, (SLONG) errSrc->nod_line,
isc_arg_number, (SLONG) errSrc->nod_column,
0);
}