We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b3d37 commit 0624a85Copy full SHA for 0624a85
qiita_db/util.py
@@ -476,8 +476,8 @@ def get_processed_params_tables():
476
-------
477
list of str
478
"""
479
- sql = ("select * from information_schema.tables where table_schema = "
480
- "'qiita' and substr(table_name, 1, 17) = 'processed_params_'")
+ sql = ("SELECT * FROM information_schema.tables WHERE table_schema = "
+ "'qiita' AND SUBSTR(table_name, 1, 17) = 'processed_params_'")
481
482
conn = SQLConnectionHandler()
483
return [x[2] for x in conn.execute_fetchall(sql)]
0 commit comments