ERROR: more than one row returned by a subquery used as an expression
SOLUTION
1 2 3 4 5 6 7 8 9
SELECT field1,field2, (selectARRAY_AGG(field3) from b where exp) FROM a WHERE exp ORDERBY field1;
2019-03-11
ISSUE
1 2 3 4
# 连接中断,返回的相应大小被限制在127.86kb SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) on request /project/api/ !!! uwsgi_response_write_body_do(): Broken pipe [core/writer.c line 341] during GET /project/api/ IOError: write error
Crypto/PublicKey/RSA.py", line 375, in decrypt raise NotImplementedError("Use module Crypto.Cipher.PKCS1_OAEP instead") NotImplementedError: Use module Crypto.Cipher.PKCS1_OAEP instead
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error.
SOLUTION
1
127.0.0.1:6379> config set stop-writes-on-bgsave-error no
2018-04-24
ISSUE
1
ValueError: Expecting property name enclosed in double quotes: line 1 column 2 (char 1)
SOLUTION
1
# 将json中的单引号改成双引号
2018-04-24
ISSUE
1
selenium.common.exceptions.InvalidSelectorException: Message: Compound class names not permitted
SOLUTION
1
在selenium元素定位中复合class,取一个class名即可
2018-04-28
ISSUE
1
Your password does not satisfy the current policy requirements
SOLUTION
1 2 3
SHOW VARIABLES LIKE 'validate_password%'; set global validate_password_policy=LOW; ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';
2018-04-24
ISSUE
1
NameError: name '__main__' is not defined
SOLUTION
1
if __name__ == '__main__':
2018-02-22
ISSUE
1 2 3 4 5
>>> eval(a) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<string>", line 1, in <module> NameError: name 'null' is not defined