(int1, int2)
| 19 | db.exec("CREATE TABLE test2 (int1, int2); INSERT INTO test2 VALUES (456, 789);"); |
| 20 | |
| 21 | function test_add(int1, int2) { |
| 22 | return int1 + int2; |
| 23 | }; |
| 24 | |
| 25 | db.create_function("TestAdd", test_add); |
| 26 | result = db.exec("SELECT TestAdd(int1, int2) FROM test2;"); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…