Skip to content

Commit cc8d71e

Browse files
committed
Remove unused op_relation.
1 parent f40f7db commit cc8d71e

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

src/yvalve/gds.cpp

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@ const int op_parameters = 15;
311311
const int op_error_handler = 16;
312312
const int op_set_error = 17;
313313
const int op_literals = 18;
314-
const int op_relation = 20;
315314
const int op_exec_into = 21;
316315
const int op_cursor_stmt = 22;
317316
const int op_byte_opt_verb = 23;
@@ -3530,27 +3529,6 @@ static void blr_print_verb(gds_ctl* control, SSHORT level)
35303529
}
35313530
break;
35323531

3533-
case op_relation:
3534-
blr_operator = control->ctl_blr_reader.getByte();
3535-
blr_print_blr(control, blr_operator);
3536-
// Strange message. Notice that blr_lock_relation was part of PC_ENGINE.
3537-
if (blr_operator != blr_relation && blr_operator != blr_rid)
3538-
{
3539-
blr_error(control,
3540-
"*** blr_relation or blr_rid must be object of blr_lock_relation, %d found ***",
3541-
(int) blr_operator);
3542-
}
3543-
3544-
if (blr_operator == blr_relation)
3545-
{
3546-
n = blr_print_byte(control);
3547-
while (--n >= 0)
3548-
blr_print_char(control);
3549-
}
3550-
else
3551-
blr_print_word(control);
3552-
break;
3553-
35543532
case op_exec_into:
35553533
blr_print_verb(control, level);
35563534
if (! blr_print_byte(control)) {

0 commit comments

Comments
 (0)