今天,公司新购买了云服务器,要部署测试环境,测试时发现开发环境没问题,但测试环境却报错了,打开日志分析错误原因,原来时mysql5.7版本的sql_model默认配置了ONLY_FULL_GROUP_BY的原因。 完整错误日志如下: ### Error querying database. Caus ...
分类:
数据库 时间:
2021-04-08 13:20:36
阅读次数:
0
P5495 Dirichlet前缀和 题意 给定长度为$n$的序列$a_i$,求出长度为$n$的数列$b$满足 \[ b_k = \sum_{i|k}a_i \] 对$b$取模$2^{32}$ \[ 1 \leq n \leq 2\times10^7 \] 分析 $a_i$贡献到$b_j$当且仅当任 ...
分类:
其他好文 时间:
2021-04-07 11:37:23
阅读次数:
0
JavaScript 严格检查模式strict 'use strict' ; 严格检查模式,预防JavaScript的随意性导致产生的一些问题,放在script标签的第一行 局部变量建议使用let去定义 <!DOCTYPE html> <html lang="en"> <head> <meta ch ...
分类:
编程语言 时间:
2021-04-07 11:05:06
阅读次数:
0
RDD持久化级别 | 持久化级别 | 含义解释 | | | | | MEMORY_ONLY | 使用未序列化的Java对象格式,将数据保存在内存中。如果内存不够存放所有的数据,则数据可能就不会进行持久化。那么下次对这个RDD执行算子操作时,那些没有被持久化的数据,需要从源头处重新计算一遍。这是默认的 ...
分类:
系统相关 时间:
2021-04-06 14:53:55
阅读次数:
0
task1 x1,y1=1.2,3.57 x2,y2=2.26,8.7 print("{:-^40}".format("输出1")) print("x1={},y1={}".format(x1,y1)) print("x2={},y2={}".format(x2,y2)) print("{:-^40 ...
分类:
其他好文 时间:
2021-04-05 12:32:08
阅读次数:
0
Given a string s containing only three types of characters: '(', ')' and '*', return true if s is valid. The following rules define a valid string: An ...
分类:
其他好文 时间:
2021-03-30 13:25:25
阅读次数:
0
From:Lance Eliot Apr 2, 2019 The Source:https://lance-eliot.medium.com/multi-sensor-data-fusion-msdf-for-driverless-cars-an-essential-primer-a1948bb8b ...
分类:
其他好文 时间:
2021-03-18 14:10:48
阅读次数:
0
Remove Duplicates from Sorted List 2 删除排序链表中的重复元素 Given the head of a sorted linked list, delete all nodes that have duplicate numbers, leaving only d ...
分类:
编程语言 时间:
2021-03-17 15:07:16
阅读次数:
0
Binary Trees With Factors (M) 题目 Given an array of unique integers, arr, where each integer arr[i] is strictly greater than 1. We make a binary tree u ...
分类:
其他好文 时间:
2021-03-15 11:24:45
阅读次数:
0
一、编程语言 1、C和C++ 《C Primer Plus》 《C和指针》 《C专家编程》 《C陷阱与缺陷》 《Essential C++》 《C++ Primer》 2、Java 《Java核心技术·卷 I》 《Java核心技术·卷 II》 《Java编程思想》 《深入理解Java虚拟机》 《实战 ...
分类:
其他好文 时间:
2021-03-15 10:30:29
阅读次数:
0