*** empty log message ***
This commit is contained in:
parent
9309eac111
commit
85b2875a3a
@ -843,5 +843,10 @@ Thu Mar 2 11:25:09 CET 2000
|
|||||||
- Fixed some parsing problems. A variable can now be a reserved
|
- Fixed some parsing problems. A variable can now be a reserved
|
||||||
SQL keyword.
|
SQL keyword.
|
||||||
- Made sure double quotes in statements are correctly quoted.
|
- Made sure double quotes in statements are correctly quoted.
|
||||||
|
|
||||||
|
Thu Mar 2 17:42:16 CET 2000
|
||||||
|
|
||||||
|
- Print error message if an indicator array is given for input
|
||||||
|
variables.
|
||||||
- Set library version to 3.1.0.
|
- Set library version to 3.1.0.
|
||||||
- Set ecpg version to 2.7.0.
|
- Set ecpg version to 2.7.0.
|
||||||
|
@ -5033,6 +5033,9 @@ coutputvariable : cvariable indicator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
cinputvariable : cvariable indicator {
|
cinputvariable : cvariable indicator {
|
||||||
|
if ($2 != NULL && (find_variable($2))->type->typ == ECPGt_array)
|
||||||
|
mmerror(ET_ERROR, "arrays of indicators are not allowed on input");
|
||||||
|
|
||||||
add_variable(&argsinsert, find_variable($1), ($2 == NULL) ? &no_indicator : find_variable($2));
|
add_variable(&argsinsert, find_variable($1), ($2 == NULL) ? &no_indicator : find_variable($2));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user