sqlsmith
sqlsmith copied to clipboard
A random SQL query generator
From Readme: `--log-to=connstr`: postgres db for logging errors into (default: don’t log) Do I need to create a table in DB or sqlsmith will create one for it? What is...
This PR just adds an additional column `code` to the `error` table and `base_error` view. The `code` is the same as the error symbol generated by enabling verbose output (`C`,...
From Readme I can see that by default the errors are not logged. There is only an option to log to postgres db. `--log-to=connstr`: postgres db for logging errors into...
After git clone autoreconf -i During ./configure the following error occurred: checking for LIBPQXX... ./configure: line 4035: syntax error near unexpected token `noext,mandatory' ./configure: line 4035: ` AX_CXX_COMPILE_STDCXX_11(noext,mandatory)' It may...
Hi SQLSmith Team! Roel here (principal test engineer at MariaDB). Great program you have here. Would you be so kind as to a connector to MariaDB? Thank you & God...
Hello, I was using SQLSmith to generate queries for a sqlite3 database I was working on, and I was wondering if there is any procedure, to manipulate the query generator...
https://www.postgresql.org/message-id/flat/PH0PR21MB132823A46AA36F0685B7A29AD8BD9%40PH0PR21MB1328.namprd21.prod.outlook.com shows a crash in member assignment in PG14: ``` UPDATE domain_indirection_test SET domain_array[0].if2 = 5; server closed the connection unexpectedly ``` Could be an interesting syntax feature to support.
https://postgr.es/m/CAPV2KRjd=ErgVGbvO2Ty20tKTEZZr6cYsYLxgN_W3eAo9pf5sw@mail.gmail.com revealed a bug in a WITH HOLD cursor: ``` BEGIN; DECLARE "test-cursor-crash" CURSOR WITH HOLD FOR SELECT di.itemId FROM "debug".downloaded_images di LEFT JOIN (SELECT itemId, MIN(last_update) as last_update FROM...
Great tool! As we are developing a PSQL DB plugin where certain statements are not supported, I wanted to exclude these. IMO my implementation is rather naive and I certainly...