初始化
This commit is contained in:
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
node_modules
|
||||||
|
out/
|
||||||
|
logs/
|
||||||
|
run/
|
||||||
|
.idea/
|
||||||
|
package-lock.json
|
||||||
|
.vscode/launch.json
|
||||||
|
public/electron/
|
||||||
|
pnpm-lock.yaml
|
||||||
|
CLAUDE.md
|
||||||
|
/public/dist/
|
||||||
10
.npmrc
Normal file
10
.npmrc
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
registry=https://registry.npmmirror.com/
|
||||||
|
disturl=https://registry.npmmirror.com/-/binary/node
|
||||||
|
electron_mirror=https://npmmirror.com/mirrors/electron/
|
||||||
|
electron-builder-binaries_mirror=https://registry.npmmirror.com/-/binary/electron-builder-binaries/
|
||||||
|
|
||||||
|
# 屏蔽警告配置
|
||||||
|
legacy-peer-deps=true
|
||||||
|
audit=false
|
||||||
|
fund=false
|
||||||
|
loglevel=error
|
||||||
68
AGENTS.md
Normal file
68
AGENTS.md
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
# Repository Guidelines
|
||||||
|
|
||||||
|
## Agent 工作方式
|
||||||
|
进入本仓库后,先阅读本文件,再开始分析、修改或输出结论。不要跳过现有文档直接下判断,至少先结合根目录现有说明、`doc/`、`package.json`、目标模块代码和相关配置确认上下文;如果存在 `README.md`,也应一并阅读。
|
||||||
|
|
||||||
|
日常交互遵循以下习惯:
|
||||||
|
|
||||||
|
- 先整理执行方案,说明目标、涉及模块、预计修改点和验证方式,待用户评审确认后再执行。
|
||||||
|
- 不要想当然;如果需求存在歧义、前提不清或有多种实现路径,先说清假设与取舍,再继续。
|
||||||
|
- 默认先确认任务是否位于 `frontend/src/`,再按 `views/`、`components/`、`api/`、`stores/`、`routers/`、`hooks/` 的调用关系向下分析;只有涉及桌面壳层或启动问题时,再继续查看 `electron/`、`scripts/`、`build/`、`public/`。
|
||||||
|
- 涉及 preload 桥接、主进程配置、自动更新、窗口生命周期、端口检测或打包启动链路时,先核对已有实现和 `doc/` 中的说明,避免只看局部代码就下结论。
|
||||||
|
- 回复风格保持简洁、直接,优先给出可执行结果;如果存在限制、风险或未验证部分,需要明确说明。
|
||||||
|
|
||||||
|
## 执行与修改原则
|
||||||
|
- 简单优先:只做当前需求所需的最小改动,不额外引入新功能、抽象层、配置项或“顺手优化”。
|
||||||
|
- 外科手术式修改:只改与任务直接相关的文件和代码行,不重构无关模块,不调整无关格式或注释。
|
||||||
|
- 保持现有风格:遵循仓库已有包结构、分层方式、命名和写法,不按个人偏好重写。
|
||||||
|
- 只清理自己造成的问题:可以删除因本次修改而产生的未使用 `import`、变量或方法;不要删除仓库中原本就存在的死代码,除非用户明确要求。
|
||||||
|
- 先定义验证方式:执行方案里要写清楚“改哪里、怎么判断改对了”;默认通过代码路径、配置一致性、界面影响范围和启动链路检查进行验证。
|
||||||
|
- 除非用户明确要求,否则不执行 `npm run build`、`npm run build-w`、`electron-builder`、加密打包或其他重型构建命令;通常只做静态检查、必要的代码阅读和轻量验证。
|
||||||
|
|
||||||
|
## 项目结构与模块组织
|
||||||
|
本仓库以前端界面开发为主,使用 Vue 3 构建页面,并通过 Electron 提供桌面壳层与本地运行能力。
|
||||||
|
|
||||||
|
- `electron/`:主进程入口、preload 桥接层、运行时配置。
|
||||||
|
- `frontend/src/`:前端源码,按 `api/`、`components/`、`hooks/`、`layouts/`、`routers/`、`stores/`、`styles/`、`utils/`、`views/` 分层组织。
|
||||||
|
- `scripts/`:桌面启动、端口检测、日志窗口和运行时辅助脚本。
|
||||||
|
- `public/`:静态 HTML 与应用图片资源。
|
||||||
|
- `build/`、`cmd/`、`data/`:打包资源、构建配置、运行时附带数据。
|
||||||
|
- `doc/`:维护说明与打包文档。
|
||||||
|
|
||||||
|
不要直接修改生成内容,如 `frontend/dist/`、`out/`、`logs/`、`public/electron/`。
|
||||||
|
|
||||||
|
## 构建、测试与开发命令
|
||||||
|
- `npm run dev`:启动 Electron 与前端联调环境。
|
||||||
|
- `npm run dev-frontend`:仅启动前端开发流程。
|
||||||
|
- `npm run dev-electron`:仅启动 Electron 侧开发流程。
|
||||||
|
- `npm run build`:构建前端与 Electron,并执行 `ee-bin encrypt`。
|
||||||
|
- `npm run build-w`:生成 Windows 包,并将 `out/win-unpacked` 重命名为 `out/CN_Tool`。
|
||||||
|
- `cd frontend; npm run lint`:运行 ESLint 并自动修复 `.vue`、TypeScript 等文件。
|
||||||
|
- `cd frontend; npm run type-check`:运行 `vue-tsc` 进行类型检查。
|
||||||
|
|
||||||
|
## 代码风格与命名规范
|
||||||
|
前端格式化规则定义在 `frontend/.prettierrc`:4 空格缩进、单引号、不写分号、单行 120 字符、LF 换行。Lint 规则基于 Vue 3 与 TypeScript。
|
||||||
|
|
||||||
|
请遵循现有命名方式:
|
||||||
|
- 页面或路由目录通常使用 `index.vue`,例如 `views/home/`
|
||||||
|
- 通用组件使用 PascalCase,例如 `HomeToolCard.vue`
|
||||||
|
- 组合式函数使用 `useX.ts`,例如 `useTheme.ts`
|
||||||
|
- 状态模块放在 `frontend/src/stores/modules/`
|
||||||
|
|
||||||
|
## 执行原则
|
||||||
|
涉及页面主流程、状态切换、接口适配、preload 通信、启动链路等关键业务节点时,必须补充简洁、准确的中文注释,并统一使用 UTF-8 编码。注释应说明业务目的、关键条件或异常处理原因,避免空泛描述。
|
||||||
|
|
||||||
|
## 测试指南
|
||||||
|
仓库根目录当前未配置自动化测试,也不存在 `*.spec.*` 或 `*.test.*` 文件。提交 PR 前至少执行 `cd frontend; npm run lint`、`cd frontend; npm run type-check`,并手动验证启动、登录和受影响页面。
|
||||||
|
|
||||||
|
## 提交与 Pull Request 规范
|
||||||
|
当前 `main` 分支还没有可用提交历史,建议使用清晰的祈使句提交信息,优先采用 Conventional Commits,例如 `feat: 增加启动端口重试`、`fix: 处理 mysql 路径缺失`。
|
||||||
|
|
||||||
|
PR 应包含:
|
||||||
|
- 问题与方案的简要说明
|
||||||
|
- 对应的任务单或 issue 链接(如有)
|
||||||
|
- UI 变更截图
|
||||||
|
- 打包、启动或 preload 变更的人工验证步骤
|
||||||
|
|
||||||
|
## 安全与配置提示
|
||||||
|
`public/ssl/`、`build/extraResources/` 与 `electron/config/` 包含敏感运行资源。不要硬编码新的密钥或口令;凡是影响打包或启动的本地 `.env`、端口或运行配置调整,都应同步记录到 `doc/`。
|
||||||
54
build/README-升级回滚.txt
Normal file
54
build/README-升级回滚.txt
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
========================================
|
||||||
|
CN_Tool 升级与回滚说明
|
||||||
|
========================================
|
||||||
|
|
||||||
|
一、升级步骤(超简单!)
|
||||||
|
----------------------------------------
|
||||||
|
1. 先使用 Navicat 或其他工具手动导出数据库 SQL 备份
|
||||||
|
2. 双击 upgrade.bat(首次会自动创建 upgrade 文件夹)
|
||||||
|
3. 将升级文件放入 upgrade/ 目录:
|
||||||
|
- app.asar + app.asar.unpacked\ (前端升级包,必须成套放入)
|
||||||
|
- entrance.jar (后端升级包)
|
||||||
|
4. 再次双击 upgrade.bat 开始升级
|
||||||
|
5. 等待完成后重启应用
|
||||||
|
|
||||||
|
补充说明:
|
||||||
|
- 可以只升级后端
|
||||||
|
- 可以只升级前端,但前端升级时必须同时提供:
|
||||||
|
app.asar
|
||||||
|
app.asar.unpacked\
|
||||||
|
- 数据库不由 upgrade.bat 自动备份,请务必提前手动导出 SQL
|
||||||
|
|
||||||
|
二、回滚步骤
|
||||||
|
----------------------------------------
|
||||||
|
如果升级后出现问题:
|
||||||
|
1. 双击 rollback.bat(仅回滚前后端程序文件)
|
||||||
|
2. 等待完成后重启应用
|
||||||
|
3. 如需恢复数据库,请手动执行升级前导出的 SQL
|
||||||
|
|
||||||
|
三、重要提示
|
||||||
|
----------------------------------------
|
||||||
|
✓ 升级前会自动备份前后端程序文件到 backup/ 目录
|
||||||
|
✓ 升级日志保存在 logs/upgrade.log
|
||||||
|
✓ 多次升级时,backup/ 保存最后一次升级前的版本
|
||||||
|
✓ 数据库备份与恢复由人工处理,不再由脚本自动执行
|
||||||
|
|
||||||
|
四、紧急情况
|
||||||
|
----------------------------------------
|
||||||
|
如果脚本无法运行,请手动操作:
|
||||||
|
|
||||||
|
【恢复前端】
|
||||||
|
copy /Y backup\app.asar resources\app.asar
|
||||||
|
rmdir /s /q resources\app.asar.unpacked
|
||||||
|
xcopy backup\app.asar.unpacked resources\app.asar.unpacked\ /E /I /Y
|
||||||
|
|
||||||
|
【恢复后端】
|
||||||
|
copy /Y backup\entrance.jar resources\extraResources\java\entrance.jar
|
||||||
|
|
||||||
|
【恢复数据库】
|
||||||
|
请使用 Navicat 或其他工具执行升级前导出的 SQL 备份
|
||||||
|
|
||||||
|
========================================
|
||||||
|
如需完整技术文档,请联系交付方提供开发文档。
|
||||||
|
========================================
|
||||||
|
|
||||||
60
build/build.bat
Normal file
60
build/build.bat
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
@echo off
|
||||||
|
chcp 65001 >nul
|
||||||
|
echo ========================================
|
||||||
|
echo 清理并重新打包
|
||||||
|
echo ========================================
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [1/4] 删除 out 目录...
|
||||||
|
cd /d "%~dp0.."
|
||||||
|
if exist out (
|
||||||
|
rmdir /s /q out 2>nul
|
||||||
|
if exist out (
|
||||||
|
echo 删除失败,请手动删除 out 目录
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
) else (
|
||||||
|
echo out 目录已删除
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
echo out 目录不存在
|
||||||
|
)
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [2/4] 构建前端代码...
|
||||||
|
call npm run build-frontend
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo 前端构建失败
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
echo 前端代码构建完成
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [3/4] 构建 electron 代码...
|
||||||
|
call npm run build-electron
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo electron 构建失败
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
echo electron 代码构建完成
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [4/4] 打包 Windows 版本(包含代码加密)...
|
||||||
|
call npm run build-w
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo 打包失败
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo ========================================
|
||||||
|
echo 打包完成!
|
||||||
|
echo 最终交付目录: out\CN_Tool\
|
||||||
|
echo 原始输出目录: out\win-unpacked\ (已自动重命名)
|
||||||
|
echo ========================================
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
|
||||||
66
build/clean-and-build.bat
Normal file
66
build/clean-and-build.bat
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
@echo off
|
||||||
|
chcp 65001 >nul
|
||||||
|
echo ========================================
|
||||||
|
echo 清理并重新打包
|
||||||
|
echo ========================================
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [1/5] 结束所有相关进程...
|
||||||
|
echo 正在停止 CN_Tool...
|
||||||
|
taskkill /F /IM CN_Tool.exe 2>nul
|
||||||
|
echo ✓ 所有进程已结束
|
||||||
|
timeout /t 2 /nobreak >nul
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [2/5] 删除 out 目录...
|
||||||
|
cd /d "%~dp0.."
|
||||||
|
if exist out (
|
||||||
|
rmdir /s /q out 2>nul
|
||||||
|
if exist out (
|
||||||
|
echo ✗ 删除失败,请手动删除 out 目录
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
) else (
|
||||||
|
echo ✓ out 目录已删除
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
echo ✓ out 目录不存在
|
||||||
|
)
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [3/5] 构建前端代码...
|
||||||
|
call npm run build-frontend
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo ✗ 前端构建失败
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
echo ✓ 前端代码构建完成
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [4/5] 构建 electron 代码...
|
||||||
|
call npm run build-electron
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo ✗ electron 构建失败
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
echo ✓ electron 代码构建完成
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo [5/5] 打包 Windows 版本(包含代码加密)...
|
||||||
|
call npm run build-w
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo ✗ 打包失败
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
echo.
|
||||||
|
|
||||||
|
echo ========================================
|
||||||
|
echo ✓ 打包完成!
|
||||||
|
echo 最终交付目录: out\CN_Tool\
|
||||||
|
echo 原始输出目录: out\win-unpacked\ (已自动重命名)
|
||||||
|
echo ========================================
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
BIN
build/data/#ib_16384_0.dblwr
Normal file
BIN
build/data/#ib_16384_0.dblwr
Normal file
Binary file not shown.
BIN
build/data/#ib_16384_1.dblwr
Normal file
BIN
build/data/#ib_16384_1.dblwr
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo10_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo10_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo11_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo11_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo12_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo12_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo13_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo13_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo14_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo14_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo15_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo15_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo16_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo16_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo17_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo17_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo18_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo18_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo19_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo19_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo20_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo20_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo21_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo21_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo22_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo22_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo23_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo23_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo24_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo24_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo25_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo25_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo26_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo26_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo27_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo27_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo28_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo28_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo29_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo29_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo30_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo30_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo31_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo31_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo32_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo32_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo33_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo33_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo34_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo34_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo35_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo35_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo36_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo36_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo5
Normal file
BIN
build/data/#innodb_redo/#ib_redo5
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo6_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo6_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo7_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo7_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo8_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo8_tmp
Normal file
Binary file not shown.
BIN
build/data/#innodb_redo/#ib_redo9_tmp
Normal file
BIN
build/data/#innodb_redo/#ib_redo9_tmp
Normal file
Binary file not shown.
6
build/data/DESKTOP-ARRVQA3.err
Normal file
6
build/data/DESKTOP-ARRVQA3.err
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
2025-10-24T05:37:51.310214Z 0 [System] [MY-013169] [Server] C:\code\gitea\NPQS-9100\pqs-9100_client\build\extraResources\mysql\bin\mysqld.exe (mysqld 8.0.43) initializing of server in progress as process 4888
|
||||||
|
2025-10-24T05:37:51.310610Z 0 [ERROR] [MY-010338] [Server] Can't find error-message file 'C:\code\gitea\NPQS-9100\pqs-9100_client\build\share\errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
|
||||||
|
2025-10-24T05:37:51.344647Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
|
||||||
|
2025-10-24T05:37:51.822216Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
|
||||||
|
2025-10-24T05:37:52.901713Z 0 [Warning] [MY-013829] [Server] Missing data directory for ICU regular expressions: C:\code\gitea\NPQS-9100\pqs-9100_client\build\lib\private\.
|
||||||
|
2025-10-24T05:37:53.321652Z 6 [Warning] [MY-010453] [Server] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
|
||||||
2
build/data/auto.cnf
Normal file
2
build/data/auto.cnf
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
[auto]
|
||||||
|
server-uuid=94eac58a-b09b-11f0-9152-00155d74a0b8
|
||||||
BIN
build/data/ca-key.pem
Normal file
BIN
build/data/ca-key.pem
Normal file
Binary file not shown.
BIN
build/data/ca.pem
Normal file
BIN
build/data/ca.pem
Normal file
Binary file not shown.
BIN
build/data/client-cert.pem
Normal file
BIN
build/data/client-cert.pem
Normal file
Binary file not shown.
BIN
build/data/client-key.pem
Normal file
BIN
build/data/client-key.pem
Normal file
Binary file not shown.
438
build/data/ib_buffer_pool
Normal file
438
build/data/ib_buffer_pool
Normal file
@@ -0,0 +1,438 @@
|
|||||||
|
4294967294,5
|
||||||
|
4294967293,131
|
||||||
|
4294967293,130
|
||||||
|
4294967293,129
|
||||||
|
4294967293,128
|
||||||
|
4294967293,127
|
||||||
|
4294967293,126
|
||||||
|
4294967293,125
|
||||||
|
4294967293,124
|
||||||
|
4294967293,123
|
||||||
|
4294967293,122
|
||||||
|
4294967293,121
|
||||||
|
4294967293,120
|
||||||
|
4294967293,119
|
||||||
|
4294967293,118
|
||||||
|
4294967293,117
|
||||||
|
4294967293,116
|
||||||
|
4294967293,115
|
||||||
|
4294967293,114
|
||||||
|
4294967293,113
|
||||||
|
4294967293,112
|
||||||
|
4294967293,111
|
||||||
|
4294967293,110
|
||||||
|
4294967293,109
|
||||||
|
4294967293,108
|
||||||
|
4294967293,107
|
||||||
|
4294967293,106
|
||||||
|
4294967293,105
|
||||||
|
4294967293,104
|
||||||
|
4294967293,103
|
||||||
|
4294967293,102
|
||||||
|
4294967293,101
|
||||||
|
4294967293,100
|
||||||
|
4294967293,99
|
||||||
|
4294967293,98
|
||||||
|
4294967293,97
|
||||||
|
4294967293,96
|
||||||
|
4294967293,95
|
||||||
|
4294967293,94
|
||||||
|
4294967293,93
|
||||||
|
4294967293,92
|
||||||
|
4294967293,91
|
||||||
|
4294967293,90
|
||||||
|
4294967293,89
|
||||||
|
4294967293,87
|
||||||
|
4294967293,86
|
||||||
|
4294967293,85
|
||||||
|
4294967293,84
|
||||||
|
4294967293,83
|
||||||
|
4294967293,82
|
||||||
|
4294967293,81
|
||||||
|
4294967293,80
|
||||||
|
4294967293,79
|
||||||
|
4294967293,78
|
||||||
|
4294967293,77
|
||||||
|
4294967293,76
|
||||||
|
4294967293,75
|
||||||
|
4294967293,74
|
||||||
|
4294967293,73
|
||||||
|
4294967293,72
|
||||||
|
4294967293,71
|
||||||
|
4294967293,70
|
||||||
|
4294967293,69
|
||||||
|
4294967293,68
|
||||||
|
4294967293,67
|
||||||
|
4294967293,66
|
||||||
|
4294967293,65
|
||||||
|
4294967293,64
|
||||||
|
4294967293,63
|
||||||
|
4294967293,62
|
||||||
|
4294967293,61
|
||||||
|
4294967293,60
|
||||||
|
4294967293,59
|
||||||
|
4294967293,58
|
||||||
|
4294967293,57
|
||||||
|
4294967293,56
|
||||||
|
4294967293,55
|
||||||
|
4294967293,54
|
||||||
|
4294967293,53
|
||||||
|
4294967293,52
|
||||||
|
4294967293,51
|
||||||
|
4294967293,50
|
||||||
|
4294967293,49
|
||||||
|
4294967293,48
|
||||||
|
4294967293,47
|
||||||
|
4294967293,46
|
||||||
|
4294967293,45
|
||||||
|
4294967293,44
|
||||||
|
4294967293,43
|
||||||
|
4294967293,42
|
||||||
|
4294967293,41
|
||||||
|
4294967293,40
|
||||||
|
4294967293,39
|
||||||
|
4294967293,38
|
||||||
|
4294967293,37
|
||||||
|
4294967293,36
|
||||||
|
4294967293,35
|
||||||
|
4294967293,34
|
||||||
|
4294967293,33
|
||||||
|
4294967293,32
|
||||||
|
4294967293,31
|
||||||
|
4294967293,30
|
||||||
|
4294967293,29
|
||||||
|
4294967293,28
|
||||||
|
4294967293,27
|
||||||
|
4294967293,26
|
||||||
|
4294967293,25
|
||||||
|
4294967293,24
|
||||||
|
4294967293,23
|
||||||
|
4294967293,22
|
||||||
|
4294967293,21
|
||||||
|
4294967293,20
|
||||||
|
4294967293,19
|
||||||
|
4294967293,18
|
||||||
|
4294967293,17
|
||||||
|
4294967293,16
|
||||||
|
4294967293,15
|
||||||
|
4294967293,14
|
||||||
|
4294967293,13
|
||||||
|
4294967293,12
|
||||||
|
4294967293,11
|
||||||
|
4294967293,10
|
||||||
|
4294967293,9
|
||||||
|
4294967293,8
|
||||||
|
4294967293,7
|
||||||
|
4294967293,6
|
||||||
|
4294967293,5
|
||||||
|
4294967293,4
|
||||||
|
4294967293,3
|
||||||
|
4294967278,132
|
||||||
|
4294967278,131
|
||||||
|
4294967278,130
|
||||||
|
4294967278,129
|
||||||
|
4294967278,128
|
||||||
|
4294967278,127
|
||||||
|
4294967278,126
|
||||||
|
4294967278,125
|
||||||
|
4294967278,124
|
||||||
|
4294967278,123
|
||||||
|
4294967278,122
|
||||||
|
4294967278,121
|
||||||
|
4294967278,120
|
||||||
|
4294967278,119
|
||||||
|
4294967278,118
|
||||||
|
4294967278,117
|
||||||
|
4294967278,116
|
||||||
|
4294967278,115
|
||||||
|
4294967278,114
|
||||||
|
4294967278,113
|
||||||
|
4294967278,112
|
||||||
|
4294967278,111
|
||||||
|
4294967278,110
|
||||||
|
4294967278,109
|
||||||
|
4294967278,108
|
||||||
|
4294967278,107
|
||||||
|
4294967278,106
|
||||||
|
4294967278,105
|
||||||
|
4294967278,104
|
||||||
|
4294967278,103
|
||||||
|
4294967278,102
|
||||||
|
4294967278,101
|
||||||
|
4294967278,100
|
||||||
|
4294967278,99
|
||||||
|
4294967278,98
|
||||||
|
4294967278,97
|
||||||
|
4294967278,96
|
||||||
|
4294967278,95
|
||||||
|
4294967278,94
|
||||||
|
4294967278,93
|
||||||
|
4294967278,92
|
||||||
|
4294967278,91
|
||||||
|
4294967278,90
|
||||||
|
4294967278,89
|
||||||
|
4294967278,87
|
||||||
|
4294967278,86
|
||||||
|
4294967278,85
|
||||||
|
4294967278,84
|
||||||
|
4294967278,83
|
||||||
|
4294967278,82
|
||||||
|
4294967278,81
|
||||||
|
4294967278,80
|
||||||
|
4294967278,79
|
||||||
|
4294967278,78
|
||||||
|
4294967278,77
|
||||||
|
4294967278,76
|
||||||
|
4294967278,75
|
||||||
|
4294967278,74
|
||||||
|
4294967278,73
|
||||||
|
4294967278,72
|
||||||
|
4294967278,71
|
||||||
|
4294967278,70
|
||||||
|
4294967278,69
|
||||||
|
4294967278,68
|
||||||
|
4294967278,67
|
||||||
|
4294967278,66
|
||||||
|
4294967278,65
|
||||||
|
4294967278,64
|
||||||
|
4294967278,63
|
||||||
|
4294967278,62
|
||||||
|
4294967278,61
|
||||||
|
4294967278,60
|
||||||
|
4294967278,59
|
||||||
|
4294967278,58
|
||||||
|
4294967278,57
|
||||||
|
4294967278,56
|
||||||
|
4294967278,55
|
||||||
|
4294967278,54
|
||||||
|
4294967278,53
|
||||||
|
4294967278,52
|
||||||
|
4294967278,51
|
||||||
|
4294967278,50
|
||||||
|
4294967278,49
|
||||||
|
4294967278,48
|
||||||
|
4294967278,47
|
||||||
|
4294967278,46
|
||||||
|
4294967278,45
|
||||||
|
4294967278,44
|
||||||
|
4294967278,43
|
||||||
|
4294967278,42
|
||||||
|
4294967278,41
|
||||||
|
4294967278,40
|
||||||
|
4294967278,39
|
||||||
|
4294967278,38
|
||||||
|
4294967278,37
|
||||||
|
4294967278,36
|
||||||
|
4294967278,35
|
||||||
|
4294967278,34
|
||||||
|
4294967278,33
|
||||||
|
4294967278,32
|
||||||
|
4294967278,31
|
||||||
|
4294967278,30
|
||||||
|
4294967278,29
|
||||||
|
4294967278,28
|
||||||
|
4294967278,27
|
||||||
|
4294967278,26
|
||||||
|
4294967278,137
|
||||||
|
4294967278,25
|
||||||
|
4294967278,24
|
||||||
|
4294967278,23
|
||||||
|
4294967278,22
|
||||||
|
4294967278,21
|
||||||
|
4294967278,20
|
||||||
|
4294967278,19
|
||||||
|
4294967278,18
|
||||||
|
4294967278,17
|
||||||
|
4294967278,16
|
||||||
|
4294967278,15
|
||||||
|
4294967278,14
|
||||||
|
4294967278,13
|
||||||
|
4294967278,12
|
||||||
|
4294967278,11
|
||||||
|
4294967278,10
|
||||||
|
4294967278,9
|
||||||
|
4294967278,8
|
||||||
|
4294967278,7
|
||||||
|
4294967278,6
|
||||||
|
4294967278,5
|
||||||
|
4294967278,4
|
||||||
|
4294967279,132
|
||||||
|
4294967279,131
|
||||||
|
4294967279,130
|
||||||
|
4294967279,129
|
||||||
|
4294967279,128
|
||||||
|
4294967279,127
|
||||||
|
4294967279,126
|
||||||
|
4294967279,125
|
||||||
|
4294967279,124
|
||||||
|
4294967279,123
|
||||||
|
4294967279,122
|
||||||
|
4294967279,121
|
||||||
|
4294967279,120
|
||||||
|
4294967279,119
|
||||||
|
4294967279,118
|
||||||
|
4294967279,117
|
||||||
|
4294967279,116
|
||||||
|
4294967279,115
|
||||||
|
4294967279,114
|
||||||
|
4294967279,113
|
||||||
|
4294967279,112
|
||||||
|
4294967279,111
|
||||||
|
4294967279,110
|
||||||
|
4294967279,109
|
||||||
|
4294967279,108
|
||||||
|
4294967279,107
|
||||||
|
4294967279,106
|
||||||
|
4294967279,105
|
||||||
|
4294967279,104
|
||||||
|
4294967279,103
|
||||||
|
4294967279,101
|
||||||
|
4294967279,100
|
||||||
|
4294967279,99
|
||||||
|
4294967279,98
|
||||||
|
4294967279,97
|
||||||
|
4294967279,96
|
||||||
|
4294967279,95
|
||||||
|
4294967279,94
|
||||||
|
4294967279,93
|
||||||
|
4294967279,92
|
||||||
|
4294967279,91
|
||||||
|
4294967279,90
|
||||||
|
4294967279,89
|
||||||
|
4294967279,87
|
||||||
|
4294967279,86
|
||||||
|
4294967279,85
|
||||||
|
4294967279,84
|
||||||
|
4294967279,83
|
||||||
|
4294967279,82
|
||||||
|
4294967279,81
|
||||||
|
4294967279,80
|
||||||
|
4294967279,79
|
||||||
|
4294967279,78
|
||||||
|
4294967279,77
|
||||||
|
4294967279,76
|
||||||
|
4294967279,75
|
||||||
|
4294967279,74
|
||||||
|
4294967279,73
|
||||||
|
4294967279,72
|
||||||
|
4294967279,71
|
||||||
|
4294967279,70
|
||||||
|
4294967279,69
|
||||||
|
4294967279,68
|
||||||
|
4294967279,67
|
||||||
|
4294967279,66
|
||||||
|
4294967279,65
|
||||||
|
4294967279,64
|
||||||
|
4294967279,63
|
||||||
|
4294967279,62
|
||||||
|
4294967279,61
|
||||||
|
4294967279,60
|
||||||
|
4294967279,59
|
||||||
|
4294967279,58
|
||||||
|
4294967279,57
|
||||||
|
4294967279,56
|
||||||
|
4294967279,55
|
||||||
|
4294967279,54
|
||||||
|
4294967279,53
|
||||||
|
4294967279,52
|
||||||
|
4294967279,51
|
||||||
|
4294967279,50
|
||||||
|
4294967279,49
|
||||||
|
4294967279,48
|
||||||
|
4294967279,47
|
||||||
|
4294967279,46
|
||||||
|
4294967279,45
|
||||||
|
4294967279,44
|
||||||
|
4294967279,43
|
||||||
|
4294967279,42
|
||||||
|
4294967279,41
|
||||||
|
4294967279,40
|
||||||
|
4294967279,39
|
||||||
|
4294967279,38
|
||||||
|
4294967279,37
|
||||||
|
4294967279,36
|
||||||
|
4294967279,35
|
||||||
|
4294967279,34
|
||||||
|
4294967279,33
|
||||||
|
4294967279,32
|
||||||
|
4294967279,31
|
||||||
|
4294967279,30
|
||||||
|
4294967279,29
|
||||||
|
4294967279,28
|
||||||
|
4294967279,27
|
||||||
|
4294967279,138
|
||||||
|
4294967279,26
|
||||||
|
4294967279,25
|
||||||
|
4294967279,24
|
||||||
|
4294967279,23
|
||||||
|
4294967279,134
|
||||||
|
4294967279,22
|
||||||
|
4294967279,21
|
||||||
|
4294967279,20
|
||||||
|
4294967279,19
|
||||||
|
4294967279,18
|
||||||
|
4294967279,17
|
||||||
|
4294967279,16
|
||||||
|
4294967279,15
|
||||||
|
4294967279,14
|
||||||
|
4294967279,13
|
||||||
|
4294967279,12
|
||||||
|
4294967279,11
|
||||||
|
4294967279,10
|
||||||
|
4294967279,9
|
||||||
|
4294967279,8
|
||||||
|
4294967279,7
|
||||||
|
4294967279,6
|
||||||
|
4294967279,5
|
||||||
|
4294967279,4
|
||||||
|
0,5
|
||||||
|
4243767290,0
|
||||||
|
4294967294,187
|
||||||
|
4294967294,467
|
||||||
|
4294967294,2
|
||||||
|
4294967294,1165
|
||||||
|
4294967294,1164
|
||||||
|
4294967294,1163
|
||||||
|
4294967294,24
|
||||||
|
4294967294,129
|
||||||
|
4294967294,1162
|
||||||
|
4294967279,280
|
||||||
|
4294967279,0
|
||||||
|
4294967279,102
|
||||||
|
4294967294,104
|
||||||
|
4294967294,1161
|
||||||
|
4294967294,1
|
||||||
|
4294967294,1160
|
||||||
|
4294967294,46
|
||||||
|
4294967294,0
|
||||||
|
4243767290,4
|
||||||
|
4243767290,3
|
||||||
|
4243767290,2
|
||||||
|
4294967294,107
|
||||||
|
4294967294,106
|
||||||
|
4294967294,128
|
||||||
|
4294967294,25
|
||||||
|
4294967294,92
|
||||||
|
4294967294,91
|
||||||
|
4294967294,90
|
||||||
|
4294967294,88
|
||||||
|
4294967294,87
|
||||||
|
4294967294,86
|
||||||
|
4294967294,85
|
||||||
|
4294967294,84
|
||||||
|
4294967294,82
|
||||||
|
4294967294,83
|
||||||
|
4294967294,1217
|
||||||
|
4294967294,1216
|
||||||
|
4294967294,1087
|
||||||
|
4294967294,1086
|
||||||
|
4294967294,1085
|
||||||
|
4294967294,466
|
||||||
|
4294967294,1159
|
||||||
|
4294967294,1084
|
||||||
|
4294967294,425
|
||||||
|
4294967294,1158
|
||||||
|
4294967294,1157
|
||||||
|
4294967294,186
|
||||||
|
4294967294,465
|
||||||
|
4294967294,1156
|
||||||
BIN
build/data/ibdata1
Normal file
BIN
build/data/ibdata1
Normal file
Binary file not shown.
BIN
build/data/mysql.ibd
Normal file
BIN
build/data/mysql.ibd
Normal file
Binary file not shown.
BIN
build/data/mysql/general_log.CSM
Normal file
BIN
build/data/mysql/general_log.CSM
Normal file
Binary file not shown.
0
build/data/mysql/general_log.CSV
Normal file
0
build/data/mysql/general_log.CSV
Normal file
|
|
1
build/data/mysql/general_log_213.sdi
Normal file
1
build/data/mysql/general_log_213.sdi
Normal file
File diff suppressed because one or more lines are too long
BIN
build/data/mysql/slow_log.CSM
Normal file
BIN
build/data/mysql/slow_log.CSM
Normal file
Binary file not shown.
0
build/data/mysql/slow_log.CSV
Normal file
0
build/data/mysql/slow_log.CSV
Normal file
|
|
1
build/data/mysql/slow_log_214.sdi
Normal file
1
build/data/mysql/slow_log_214.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/accounts_145.sdi
Normal file
1
build/data/performance_schema/accounts_145.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/binary_log_trans_189.sdi
Normal file
1
build/data/performance_schema/binary_log_trans_189.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/cond_instances_82.sdi
Normal file
1
build/data/performance_schema/cond_instances_82.sdi
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"mysqld_version_id":80043,"dd_version":80023,"sdi_version":80019,"dd_object_type":"Table","dd_object":{"name":"cond_instances","mysql_version_id":80043,"created":20251024053752,"last_altered":20251024053752,"hidden":1,"options":"avg_row_length=0;key_block_size=0;keys_disabled=0;pack_record=1;server_p_s_table=1;stats_auto_recalc=0;stats_sample_pages=0;","columns":[{"name":"NAME","type":16,"is_nullable":false,"is_zerofill":false,"is_unsigned":false,"is_auto_increment":false,"is_virtual":false,"hidden":1,"ordinal_position":1,"char_length":512,"numeric_precision":0,"numeric_scale":0,"numeric_scale_null":true,"datetime_precision":0,"datetime_precision_null":1,"has_no_default":true,"default_value_null":false,"srs_id_null":true,"srs_id":0,"default_value":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\nAA==","default_value_utf8_null":true,"default_value_utf8":"","default_option":"","update_option":"","comment":"","generation_expression":"","generation_expression_utf8":"","options":"interval_count=0;","se_private_data":"","engine_attribute":"","secondary_engine_attribute":"","column_key":4,"column_type_utf8":"varchar(128)","elements":[],"collation_id":255,"is_explicit_collation":false},{"name":"OBJECT_INSTANCE_BEGIN","type":9,"is_nullable":false,"is_zerofill":false,"is_unsigned":true,"is_auto_increment":false,"is_virtual":false,"hidden":1,"ordinal_position":2,"char_length":20,"numeric_precision":20,"numeric_scale":0,"numeric_scale_null":false,"datetime_precision":0,"datetime_precision_null":1,"has_no_default":true,"default_value_null":false,"srs_id_null":true,"srs_id":0,"default_value":"AAAAAAAAAAA=","default_value_utf8_null":true,"default_value_utf8":"","default_option":"","update_option":"","comment":"","generation_expression":"","generation_expression_utf8":"","options":"interval_count=0;","se_private_data":"","engine_attribute":"","secondary_engine_attribute":"","column_key":2,"column_type_utf8":"bigint unsigned","elements":[],"collation_id":255,"is_explicit_collation":false}],"schema_ref":"performance_schema","se_private_id":18446744073709551615,"engine":"PERFORMANCE_SCHEMA","last_checked_for_upgrade_version_id":0,"comment":"","se_private_data":"","engine_attribute":"","secondary_engine_attribute":"","row_format":2,"partition_type":0,"partition_expression":"","partition_expression_utf8":"","default_partitioning":0,"subpartition_type":0,"subpartition_expression":"","subpartition_expression_utf8":"","default_subpartitioning":0,"indexes":[{"name":"PRIMARY","hidden":false,"is_generated":false,"ordinal_position":1,"comment":"","options":"flags=0;","se_private_data":"","type":1,"algorithm":4,"is_algorithm_explicit":false,"is_visible":true,"engine":"PERFORMANCE_SCHEMA","engine_attribute":"","secondary_engine_attribute":"","elements":[{"ordinal_position":1,"length":8,"order":1,"hidden":false,"column_opx":1}]},{"name":"NAME","hidden":false,"is_generated":false,"ordinal_position":2,"comment":"","options":"flags=0;","se_private_data":"","type":3,"algorithm":4,"is_algorithm_explicit":false,"is_visible":true,"engine":"PERFORMANCE_SCHEMA","engine_attribute":"","secondary_engine_attribute":"","elements":[{"ordinal_position":1,"length":512,"order":1,"hidden":false,"column_opx":0}]}],"foreign_keys":[],"check_constraints":[],"partitions":[],"collation_id":255}}
|
||||||
1
build/data/performance_schema/data_lock_waits_161.sdi
Normal file
1
build/data/performance_schema/data_lock_waits_161.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/data_locks_160.sdi
Normal file
1
build/data/performance_schema/data_locks_160.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/error_log_83.sdi
Normal file
1
build/data/performance_schema/error_log_83.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_errors_su_139.sdi
Normal file
1
build/data/performance_schema/events_errors_su_139.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_errors_su_140.sdi
Normal file
1
build/data/performance_schema/events_errors_su_140.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_errors_su_141.sdi
Normal file
1
build/data/performance_schema/events_errors_su_141.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_errors_su_142.sdi
Normal file
1
build/data/performance_schema/events_errors_su_142.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_errors_su_143.sdi
Normal file
1
build/data/performance_schema/events_errors_su_143.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_cu_111.sdi
Normal file
1
build/data/performance_schema/events_stages_cu_111.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_hi_112.sdi
Normal file
1
build/data/performance_schema/events_stages_hi_112.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_hi_113.sdi
Normal file
1
build/data/performance_schema/events_stages_hi_113.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_su_114.sdi
Normal file
1
build/data/performance_schema/events_stages_su_114.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_su_115.sdi
Normal file
1
build/data/performance_schema/events_stages_su_115.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_su_116.sdi
Normal file
1
build/data/performance_schema/events_stages_su_116.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_su_117.sdi
Normal file
1
build/data/performance_schema/events_stages_su_117.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_stages_su_118.sdi
Normal file
1
build/data/performance_schema/events_stages_su_118.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_119.sdi
Normal file
1
build/data/performance_schema/events_statement_119.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_120.sdi
Normal file
1
build/data/performance_schema/events_statement_120.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_121.sdi
Normal file
1
build/data/performance_schema/events_statement_121.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_122.sdi
Normal file
1
build/data/performance_schema/events_statement_122.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_123.sdi
Normal file
1
build/data/performance_schema/events_statement_123.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_124.sdi
Normal file
1
build/data/performance_schema/events_statement_124.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_125.sdi
Normal file
1
build/data/performance_schema/events_statement_125.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_126.sdi
Normal file
1
build/data/performance_schema/events_statement_126.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_127.sdi
Normal file
1
build/data/performance_schema/events_statement_127.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_128.sdi
Normal file
1
build/data/performance_schema/events_statement_128.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_129.sdi
Normal file
1
build/data/performance_schema/events_statement_129.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_statement_130.sdi
Normal file
1
build/data/performance_schema/events_statement_130.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_131.sdi
Normal file
1
build/data/performance_schema/events_transacti_131.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_132.sdi
Normal file
1
build/data/performance_schema/events_transacti_132.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_133.sdi
Normal file
1
build/data/performance_schema/events_transacti_133.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_134.sdi
Normal file
1
build/data/performance_schema/events_transacti_134.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_135.sdi
Normal file
1
build/data/performance_schema/events_transacti_135.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_136.sdi
Normal file
1
build/data/performance_schema/events_transacti_136.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_137.sdi
Normal file
1
build/data/performance_schema/events_transacti_137.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_transacti_138.sdi
Normal file
1
build/data/performance_schema/events_transacti_138.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_waits_cur_84.sdi
Normal file
1
build/data/performance_schema/events_waits_cur_84.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_waits_his_85.sdi
Normal file
1
build/data/performance_schema/events_waits_his_85.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_waits_his_86.sdi
Normal file
1
build/data/performance_schema/events_waits_his_86.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_waits_sum_87.sdi
Normal file
1
build/data/performance_schema/events_waits_sum_87.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_waits_sum_88.sdi
Normal file
1
build/data/performance_schema/events_waits_sum_88.sdi
Normal file
File diff suppressed because one or more lines are too long
1
build/data/performance_schema/events_waits_sum_89.sdi
Normal file
1
build/data/performance_schema/events_waits_sum_89.sdi
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user