-- regression test script for my_extension CREATE EXTENSION my_extension; -- Verify the data in the my_table table SELECT * FROM my_table; id | name ----+------ (0 rows) -- Test the add function SELECT add(1, 2); add ----- 3 (1 row)