summaryrefslogtreecommitdiff
path: root/src/mongo/db/test_output/exec/sbe/s_b_e_local_bind_test/binary_operator_rhs_variable.txt
blob: 2ac820934b98056c337412f4166cd9759dae07c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Golden test output of SBELocalBindTest/BinaryOperatorRhsVariable
-- INPUT EXPRESSION:

    let [
        l10.0 = 10 
    ] 
    in (20 - l10.0) 


-- COMPILED EXPRESSION:
[0x0000-0x001d] stackSize: 1, maxStackSize: 2
0x0000: pushConstVal(value: 10);
0x000a: pushConstVal(value: 20);
0x0014: sub(popLhs: 1, offsetLhs: 0, popRhs: 0, offsetRhs: 1);
0x001b: swap();
0x001c: pop();


-- EXECUTE VARIATION:
RESULT: 10