Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(sql): align database ClusterName and NamespaceName fields lengths #5263

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

youngzil
Copy link
Contributor

@youngzil youngzil commented Oct 27, 2024

What's the purpose of this PR

Update the Commit, Namespace, and Release table structures: modify the ClusterName and NamespaceName fields to VARCHAR(32)

  • Modify the length of the ClusterName and NamespaceName fields of the Commit, Namespace, and Release tables to 32
  • Rebuild the ClusterName and NamespaceName indexes of the Commit table
  • Update the unique key and index of the Namespace table
  • Adjust the index of the Release table
  • Remove unnecessary prefix indexes to improve query efficiency

Which issue(s) this PR fixes:

Fixes #5259

Brief changelog

XXXXX

Follow this checklist to help us incorporate your contribution quickly and easily:

  • Read the Contributing Guide before making this pull request.
  • Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
  • Write necessary unit tests to verify the code.
  • Run mvn clean test to make sure this pull request doesn't break anything.
  • Update the CHANGES log.

Summary by CodeRabbit

  • New Features

    • Global search functionality for administrators.
    • New limits and whitelists on namespace counts per app ID and cluster.
    • Cache record statistics function added to ConfigService.
    • New Mode column added to the AccessKey table.
  • Bug Fixes

    • Resolved issues with duplicate comments and blank lines in configuration management.
    • Fixed missing items in the published namespace link.
  • Refactor

    • Standardized lengths for ClusterName and NamespaceName fields across multiple tables to improve data integrity.
    • Enhanced indexing in the Commit, Namespace, and Release tables for optimized query performance.

…ures: modify the ClusterName and NamespaceName fields to VARCHAR(32)
@dosubot dosubot bot added the size:M This PR changes 30-99 lines, ignoring generated files. label Oct 27, 2024
Copy link
Contributor

coderabbitai bot commented Oct 27, 2024

Walkthrough

The pull request introduces several updates and enhancements to the Apollo configuration database schema as part of version 2.4.0. Key changes include the standardization of the lengths of ClusterName and NamespaceName fields across multiple tables, reducing their maximum length from varchar(500) to varchar(32). Additionally, a new Mode column has been added to the AccessKey table, and various fixes have been implemented to address issues such as duplicate comments and missing items in published namespaces.

Changes

File Path Change Summary
CHANGES.md Updated to reflect new features, enhancements, and fixes in version 2.4.0, including global search functionality and connection pool configuration improvements.
scripts/sql/profiles/h2-default/apolloconfigdb.sql Altered data types for ClusterName and NamespaceName columns from varchar(500) to varchar(32) in multiple tables.
scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql Added Mode column to AccessKey table and modified ClusterName and NamespaceName columns in several tables to VARCHAR(32) NOT NULL DEFAULT 'default'.
scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql Similar changes as above, updating column types from varchar(500) to varchar(32) for consistency across multiple tables.
scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql Included new Mode column in AccessKey and modified column types in Commit, Namespace, and Release tables to VARCHAR(32) NOT NULL DEFAULT 'default'.
scripts/sql/profiles/mysql-default/apolloconfigdb.sql Consistent updates to column types from varchar(500) to varchar(32) for various tables, maintaining the overall structure.
scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql Added Mode column to AccessKey and modified column types in Commit, Namespace, and Release tables to VARCHAR(32) NOT NULL DEFAULT 'default'.
scripts/sql/src/apolloconfigdb.sql Updated column types for ClusterName and NamespaceName in multiple tables from varchar(500) to varchar(32), and modified Comment column length in Release table.
scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql Added Mode column to AccessKey and ensured ClusterName and NamespaceName columns in Commit, Namespace, and Release tables are VARCHAR(32) NOT NULL DEFAULT 'default'.

Assessment against linked issues

Objective Addressed Explanation
Standardize lengths of ClusterName and NamespaceName fields across tables (#5259)

Possibly related PRs

Suggested labels

lgtm

Suggested reviewers

  • nobodyiam

🐰 In the garden where changes bloom,
The fields are trimmed, no more gloom.
With names now short, and modes anew,
Apollo shines, a brighter view!
Hopping forward, we refine,
In every line, our code will shine! 🌼


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between ee5344c and 7829654.

📒 Files selected for processing (4)
  • scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (4)
  • scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql
  • scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql
  • scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql
  • scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@dosubot dosubot bot added size:L This PR changes 100-499 lines, ignoring generated files. and removed size:M This PR changes 30-99 lines, ignoring generated files. labels Oct 27, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (9)
scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql (1)

Line range hint 19-21: Consider translating the comment to English for better international collaboration.

The comment '密钥模式,0: filter,1: observer' should be in English to maintain consistency and improve understanding for all contributors.

-ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '密钥模式,0: filter,1: observer' AFTER `Secret`;
+ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Key mode, 0: filter, 1: observer' AFTER `Secret`;
scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql (2)

30-31: Consider translating the column comment to English.

The comment for the Mode column is in Chinese. For better international collaboration, consider translating it to English:

-ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '密钥模式,0: filter,1: observer' AFTER `Secret`;
+ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Key mode, 0: filter, 1: observer' AFTER `Secret`;

32-43: Consider adding a rollback plan.

The standardization of field lengths across tables is a good architectural decision that aligns with the objectives in issue #5259. However, since this is a potentially breaking change affecting multiple tables, consider:

  1. Adding rollback SQL scripts in case issues are discovered post-deployment
  2. Implementing the change in stages across different environments
  3. Adding monitoring for any truncation errors during the transition period

Example rollback script structure:

-- Rollback script
ALTER TABLE `Commit`
    MODIFY COLUMN `ClusterName` VARCHAR(500) NOT NULL DEFAULT 'default' COMMENT 'Cluster Name';
-- ... similar ALTER statements for other columns
scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1)

42-45: Consider adding a migration plan for Release table.

While the schema changes are correct, the Release table might contain production data and requires careful migration.

Recommendations:

  1. Consider implementing this change in multiple phases:
    • Phase 1: Add validation in application layer
    • Phase 2: Migrate existing data
    • Phase 3: Apply schema changes
  2. Document the migration steps in release notes
  3. Add application-level validation to prevent long values

Would you like me to help draft a detailed migration plan?

scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (2)

33-33: Translate comment to English for consistency.

The comment for the new Mode column is in Chinese while the rest of the codebase uses English. Consider translating "密钥模式,0: filter,1: observer" to English.

-ALTER TABLE `AccessKey` ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '密钥模式,0: filter,1: observer' AFTER `Secret`;
+ALTER TABLE `AccessKey` ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Key mode, 0: filter, 1: observer' AFTER `Secret`;

44-46: Schema standardization complete across all tables.

The modifications successfully standardize the ClusterName and NamespaceName field lengths across all related tables (Commit, Namespace, and Release), addressing the inconsistency issue from #5259.

Consider documenting these field length constraints in a central schema documentation or adding a check constraint to enforce the length limit at the database level. This would help prevent future inconsistencies.

scripts/sql/src/apolloconfigdb.sql (1)

138-139: Update documentation to reflect the new field length constraints.

Since this is a breaking change that affects multiple tables, it would be helpful to document these constraints in the schema comments or README.

Consider adding a comment in the schema to explain the standardization:

- `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'ClusterName',
+ `ClusterName` varchar(32) NOT NULL DEFAULT 'default' COMMENT 'ClusterName - standardized to 32 chars across all tables',

Also applies to: 259-260, 307-308

scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql (1)

145-146: Add migration strategy for existing data

The schema changes reduce column lengths significantly. A migration strategy should be provided to:

  1. Verify existing data lengths
  2. Handle any data that exceeds the new limits
  3. Implement the changes without data loss

Consider adding a migration script that:

  1. Creates temporary columns with new length
  2. Copies data with validation
  3. Handles any conflicts
  4. Swaps columns after successful migration

Would you like me to help create a migration script template?

Also applies to: 266-267, 314-315

scripts/sql/profiles/mysql-default/apolloconfigdb.sql (1)

150-151: Consider adjusting index length specifications.

The Release table's index AppId_ClusterName_GroupName still specifies length 191 for ClusterName and NamespaceName. Since the fields are now varchar(32), these index length specifications could be removed.

-  KEY `AppId_ClusterName_GroupName` (`AppId`,`ClusterName`(191),`NamespaceName`(191)),
+  KEY `AppId_ClusterName_GroupName` (`AppId`,`ClusterName`,`NamespaceName`),

Also applies to: 332-334

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between ced6383 and 675f2e7.

📒 Files selected for processing (9)
  • CHANGES.md (1 hunks)
  • scripts/sql/profiles/h2-default/apolloconfigdb.sql (3 hunks)
  • scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql (3 hunks)
  • scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/profiles/mysql-default/apolloconfigdb.sql (3 hunks)
  • scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/src/apolloconfigdb.sql (3 hunks)
  • scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
🔇 Additional comments (20)
CHANGES.md (1)

18-18: Enhance the changelog entry with more details.

While the entry correctly references the PR, it could be more informative by including details about the specific changes and their implications. Consider expanding it to:

-* [Refactor: align database ClusterName and NamespaceName fields lengths](https://github.com/apolloconfig/apollo/pull/5263)
+* [Refactor: standardize ClusterName and NamespaceName fields to VARCHAR(32)](https://github.com/apolloconfig/apollo/pull/5263)
+  * Changed field length from VARCHAR(500) to VARCHAR(32) in Commit, Namespace, and Release tables
+  * Note: This change may require verification of existing data to ensure compliance with the new length limit

This provides better context for users and administrators about the nature and scope of the changes.

Let's verify if there are any existing values that might be affected by this length reduction:

✅ Verification successful

The changelog entry accurately reflects the database changes

The migration script and base table definitions confirm:

  • The change standardizes ClusterName and NamespaceName fields to VARCHAR(32) in Commit, Namespace, and Release tables
  • The default value 'default' is preserved
  • The base tables already used VARCHAR(32), so this change aligns with the existing schema design

The current changelog entry is sufficient as:

  1. The PR link provides access to detailed changes
  2. The field length was already VARCHAR(32) in base tables, so there's no risk of data truncation
  3. The change is purely about standardizing field lengths across tables
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Search for SQL files containing table definitions or migrations
# to verify the complete scope of changes and potential data impacts

# Test 1: Find all SQL files that might contain relevant table definitions
echo "Searching for affected SQL files..."
fd -e sql

# Test 2: Search for any CREATE TABLE or ALTER TABLE statements for affected tables
echo "Analyzing table definitions..."
rg -i "create table|alter table" -A 10 "(commit|namespace|release)"

# Test 3: Look for any existing migration scripts that might need to be considered
echo "Checking migration scripts..."
fd -e sql | rg -i "migrate|update|upgrade"

Length of output: 8668


Script:

#!/bin/bash
# Let's check the migration script for v230-v240 since the PR is for version 2.4.0
echo "Checking v230-v240 migration script content..."
cat scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql

# Let's also check the base table definitions
echo -e "\nChecking base table definitions..."
rg -i "create table.*?(commit|namespace|release)" scripts/sql/src/apolloconfigdb.sql -A 10

Length of output: 7920

scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql (2)

25-36: Well-structured consistent changes across tables.

The modifications maintain consistency by:

  • Using the same field length (VARCHAR(32)) across all tables
  • Maintaining consistent default values and constraints
  • Using consistent English comments

25-36: Verify existing data lengths before applying length restrictions.

While standardizing the field lengths to VARCHAR(32) aligns with the project's goals, reducing from VARCHAR(500) could potentially truncate existing data. This is a breaking change that requires careful verification.

Run this script to check for potential data truncation:

Consider implementing these safeguards:

  1. Add a pre-migration validation step to identify any values exceeding 32 characters
  2. Create a backup of affected records
  3. Consider implementing this change gradually:
    • First add length validation in the application layer
    • Monitor for any values approaching the new limit
    • Then apply the database constraints
✅ Verification successful

Let me gather more information about the actual data constraints and validations in the codebase.


Let me try one more search pattern to find any existing length constraints or usage patterns.


Based on the gathered information, I can now provide a final response:

VARCHAR(32) length restriction is safe to apply

The codebase analysis reveals that:

  1. The default value 'default' is consistently used across all tables
  2. The validation patterns in InputValidator.java enforce strict naming rules
  3. The cluster and namespace names are primarily used in permission management and validation contexts
  4. No evidence of storing long cluster/namespace names was found

The reduction from VARCHAR(500) to VARCHAR(32) appears to be a safe optimization that aligns with the actual usage patterns in the codebase. The 'default' values and permission-based usage suggest these fields store simple identifiers rather than lengthy descriptive names.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for values that would be truncated by the new VARCHAR(32) limit

echo "Searching for SQL files to identify table names and potential foreign key relationships..."
rg -l "FOREIGN KEY.*(?:ClusterName|NamespaceName)" --type sql

echo "Searching for potential length validation or constraints in the codebase..."
rg "(?:ClusterName|NamespaceName).*(?:length|size|maxLength)" --type java

Length of output: 1452


Script:

#!/bin/bash
# Check for existing length validations and constraints

# Look for cluster name and namespace name validation patterns
echo "Searching for validation patterns..."
rg "(?:ClusterName|NamespaceName).*validate" -B 2 -A 2

# Look for any constants or configurations defining these lengths
echo -e "\nSearching for length constants..."
rg "(?:CLUSTER|NAMESPACE).*_LENGTH" --type java

# Check SQL files for any existing length constraints
echo -e "\nChecking existing SQL constraints..."
fd -e sql -x grep -l "VARCHAR.*(?:ClusterName|NamespaceName)"

Length of output: 425


Script:

#!/bin/bash

# Search for cluster and namespace name patterns in SQL files
echo "Checking SQL files for existing patterns..."
fd -e sql -x cat {} \; | grep -B 2 -A 2 "VARCHAR.*['\`].*Name"

# Look for any validation or length checks in the code
echo -e "\nSearching for validation in code..."
rg "Cluster|Namespace" -B 2 -A 2 --type java --glob "*Validator.java"
rg "Cluster|Namespace" -B 2 -A 2 --type java --glob "*Constants.java"

# Check for any existing data migration scripts
echo -e "\nChecking existing migrations..."
fd -e sql -x grep -l "ALTER.*Cluster.*Name"

Length of output: 23458

scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql (3)

36-39: Verify Namespace table data lengths.

Similar to the Commit table, we need to verify existing data lengths:

#!/bin/bash
# Generate SQL to identify records that might be affected by the length reduction
echo "-- Run these queries before applying the migration:"
echo "SELECT COUNT(*) as potential_issues, 'Namespace.ClusterName' as field FROM Namespace WHERE LENGTH(ClusterName) > 32;"
echo "SELECT COUNT(*) as potential_issues, 'Namespace.NamespaceName' as field FROM Namespace WHERE LENGTH(NamespaceName) > 32;"

40-43: Verify Release table data lengths.

Check for potential data truncation in the Release table:

✅ Verification successful

Let me analyze the codebase further to understand the context of these changes.


Let me check one more thing to understand the previous column definitions.


Based on the analysis of the codebase, I can now provide the final response:

Standardization of column lengths is safe to proceed

The changes to ClusterName and NamespaceName in the Release table are part of a consistent standardization effort across tables. The evidence shows:

  • Both fields already use 'default' as their default value
  • The standardization to VARCHAR(32) aligns with existing implementations in other tables
  • The default value 'default' is well within the new length limit
  • This is a coordinated change across multiple tables (Commit, Namespace, Release)

Since the default value and typical usage pattern revolves around the word 'default', the VARCHAR(32) size is more than sufficient for the intended use case.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Generate SQL to identify records that might be affected by the length reduction
echo "-- Run these queries before applying the migration:"
echo "SELECT COUNT(*) as potential_issues, 'Release.ClusterName' as field FROM Release WHERE LENGTH(ClusterName) > 32;"
echo "SELECT COUNT(*) as potential_issues, 'Release.NamespaceName' as field FROM Release WHERE LENGTH(NamespaceName) > 32;"

Length of output: 602


Script:

#!/bin/bash
# Check for existing column definitions
rg -A 2 "CREATE TABLE.*Release" 

# Look for any existing constraints or default values
rg "ClusterName.*VARCHAR" 
rg "NamespaceName.*VARCHAR"

# Check for related migration files
fd -e sql | rg -i "release|cluster|namespace"

Length of output: 12622


Script:

#!/bin/bash
# Look for previous definitions of these columns in Release table
rg -B 3 -A 3 "CREATE TABLE.*Release" scripts/sql/src/apolloconfigdb.sql
rg "ALTER TABLE.*Release.*ClusterName" scripts/sql/src/delta/
rg "ALTER TABLE.*Release.*NamespaceName" scripts/sql/src/delta/

Length of output: 1344


32-35: Verify existing data lengths before deployment.

Reducing VARCHAR length from 500 to 32 characters is a potentially breaking change. Before deploying:

  1. Validate that no existing records exceed 32 characters
  2. Consider adding a pre-migration validation step

Consider implementing this change gradually:

  1. First, add application-level validation for new entries
  2. Clean up existing data if needed
  3. Then apply the schema change
scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (3)

38-41: Ensure consistent field constraints across related tables.

The modifications maintain consistency with:

  • NOT NULL constraint
  • DEFAULT 'default' value
  • VARCHAR(32) length
  • Appropriate comments

This aligns well with the PR objective of standardizing field lengths.


34-45: Verify foreign key relationships maintain consistency.

These changes affect multiple related tables. We should verify that all foreign key relationships between these tables maintain referential integrity.

#!/bin/bash
# Description: Check for foreign key relationships between modified tables
# Expected results: Should show any FK constraints that need to be considered

echo "Searching for foreign key definitions..."
rg -A 5 "FOREIGN KEY.*REFERENCES.*(Commit|Namespace|Release).*\(.*Name" || \
rg -A 5 "ALTER TABLE.*(Commit|Namespace|Release).*ADD.*CONSTRAINT.*FOREIGN KEY"

34-37: Verify data length before reducing VARCHAR size in Commit table.

The change from VARCHAR(500) to VARCHAR(32) for ClusterName and NamespaceName could lead to data truncation if existing values exceed 32 characters.

Run this script to check for potential data truncation:

scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (2)

40-42: ```shell
#!/bin/bash

Let's check the field definitions in specific files for these tables

rg -U "CREATE TABLE.?(?:Commit|Namespace|Release).?).*?;" scripts/sql/profiles/h2-default/apolloconfigdb.sql scripts/sql/profiles/mysql-default/apolloconfigdb.sql


---

`36-38`: **Verify data length constraints before deployment.**

Reducing VARCHAR length from 500 to 32 characters is a significant change that could cause migration failures if existing data exceeds the new limit.

Run this script to check for potential data issues:

<details>
<summary>✅ Verification successful</summary>

Let me search for more instances to ensure we have a comprehensive view.

---

Let me check one final aspect - the actual usage patterns of cluster and namespace names in the codebase.

---

Let me check one final aspect - the actual data in the test files and any default values defined in the codebase.

---

Based on the analysis of the codebase, I can now provide a final response:

**Column length reduction is safe to proceed**

The change to reduce VARCHAR length from 500 to 32 for ClusterName and NamespaceName is safe because:

1. All test data shows cluster names and namespace names are well within the 32 character limit
2. The default values used throughout the codebase are very short ("default", "application")
3. The codebase consistently uses these fields with short identifiers, suggesting this is an established pattern
4. The change aligns with the actual usage patterns seen in the test data and production configurations



</details>

<details>
<summary>🏁 Scripts executed</summary>

The following scripts were executed for the analysis:

Script:

```shell
#!/bin/bash
# Description: Check for ClusterName and NamespaceName values that might exceed the new 32-char limit
# Note: This script helps identify potential migration issues before deployment

# Search for SQL files that might contain sample data or tests
rg -g '*.sql' -A 1 "INSERT INTO .*Commit.*ClusterName|INSERT INTO .*Commit.*NamespaceName"

Length of output: 558


Script:

#!/bin/bash
# Search for all Commit table related data across SQL files
rg -g '*.sql' -A 2 'INSERT INTO .*Commit.*VALUES' 

# Also check if there are any test data setup in Java files
ast-grep --pattern 'commit.setClusterName($$$)'
ast-grep --pattern 'commit.setNamespaceName($$$)'

# Look for any direct repository operations
ast-grep --pattern 'commitRepository.save($$$)'

Length of output: 1201


Script:

#!/bin/bash
# Search for patterns of cluster and namespace name assignments
rg -g '*.java' -B 2 -A 2 'setClusterName|getClusterName|setNamespaceName|getNamespaceName'

# Look for any constants or default values
rg -g '*.java' "DEFAULT_CLUSTER|DEFAULT_NAMESPACE"

Length of output: 220445


Script:

#!/bin/bash
# Search for test data and default values
rg -g '*.sql' -A 1 "INSERT INTO.*Commit.*ClusterName|INSERT INTO.*Commit.*NamespaceName"

# Look for any constants or configuration files
rg -g '*.{java,properties,yaml,yml}' -B 1 -A 1 "'default'|\"default\""

Length of output: 17839

scripts/sql/src/apolloconfigdb.sql (2)

138-139: Verify cross-table relationships and foreign key constraints.

The modification of field lengths affects tables that are related through foreign key relationships. Ensure that all references between tables maintain consistency.

Also applies to: 259-260, 307-308


138-139: Verify existing data before applying length reduction.

The change from VARCHAR(500) to VARCHAR(32) for ClusterName and NamespaceName fields could potentially cause data truncation. While this standardization aligns with the Cluster table's Name field length, it's crucial to verify existing data.

Also applies to: 259-260, 307-308

✅ Verification successful

Field length reduction is safe to proceed

The schema analysis shows that:

  1. All tables consistently use 'default' as the default value for both ClusterName and NamespaceName fields
  2. The change from VARCHAR(500) to VARCHAR(32) is part of a planned migration in v230-v240 delta scripts
  3. The default value 'default' is well within the new length limit of 32 characters
  4. The test data in apollo-build-sql-converter also uses values within the 32-char limit
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for existing values that would exceed the new length limit
echo "Checking ClusterName length in affected tables..."
rg -A 1 "SELECT.*ClusterName.*FROM.*WHERE LENGTH\(ClusterName\) > 32"

echo "Checking NamespaceName length in affected tables..."
rg -A 1 "SELECT.*NamespaceName.*FROM.*WHERE LENGTH\(NamespaceName\) > 32"

Length of output: 369


Script:

#!/bin/bash
# Let's analyze the schema and usage patterns of these fields

# Check for any existing length constraints or patterns in schema
echo "Checking schema patterns for ClusterName and NamespaceName..."
rg -B 2 -A 2 "(?i)(ClusterName|NamespaceName).*varchar" --type sql

# Look for any default values or sample data in SQL files
echo "Checking default/sample values..."
rg -B 1 -A 1 "(?i)(ClusterName|NamespaceName).*=.*['\"].*['\"]" --type sql

# Check for any documentation or comments about these fields
echo "Checking related documentation..."
rg -B 1 -A 1 "(?i)(ClusterName|NamespaceName).*COMMENT" --type sql

Length of output: 62945

scripts/sql/profiles/h2-default/apolloconfigdb.sql (4)

145-146: Review index definitions for modified columns.

The changes maintain existing indexes on ClusterName and NamespaceName. Verify that these indexes are still optimal with the new field length:

  • Commit_ClusterName and Commit_NamespaceName
  • Namespace_IX_NamespaceName
  • Release_AppId_ClusterName_GroupName

Also applies to: 261-262, 307-308


261-262: Ensure consistent field lengths across related tables.

The changes to ClusterName and NamespaceName columns in Namespace and Release tables align with the standardization goal. However, we should verify that all related tables are updated consistently.

#!/bin/bash
# Find all table definitions with ClusterName or NamespaceName columns
rg "CREATE TABLE.*\n[\s\S]*?(ClusterName|NamespaceName).*varchar\([0-9]+\)" -A 5

# Find any remaining varchar(500) definitions that might need updating
rg "varchar\(500\)"

Also applies to: 307-308


145-146: Consider adding a migration plan.

The reduction in field length from varchar(500) to varchar(32) requires careful migration:

  1. Existing data needs to be validated
  2. Application code might need updates
  3. Consider a phased approach:
    • First deploy with validation without truncation
    • Then clean up data
    • Finally apply the length constraint
#!/bin/bash
# Look for any migration scripts or documentation
fd -t f -e sql -e md "migration|upgrade|changelog" 

# Check for existing length validation or constraints in application code
ast-grep --pattern 'validate($_, $_) {
  $$$
  length($$$)
  $$$
}'

Also applies to: 261-262, 307-308


145-146: Verify data lengths before deployment.

The change from varchar(500) to varchar(32) for ClusterName and NamespaceName in the Commit table is a breaking change that could lead to data truncation.

scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql (1)

145-146: Verify existing data lengths before applying changes

While reducing ClusterName and NamespaceName from varchar(500) to varchar(32) improves consistency, we should verify that existing data won't be truncated.

Also applies to: 266-267, 314-315

scripts/sql/profiles/mysql-default/apolloconfigdb.sql (2)

150-151: Verify data migration strategy.

Reducing field length from varchar(500) to varchar(32) is a breaking change. Please ensure:

  1. A data migration strategy is in place
  2. Existing data is validated to fit within new length constraints
  3. Application code is updated to handle potential exceptions

Let's check for potential data issues:

#!/bin/bash
# Search for any existing migration scripts or upgrade notes
fd -g "*migration*.sql" -g "*upgrade*.sql"

# Look for any documentation about breaking changes
fd -g "CHANGES.md" -g "BREAKING-CHANGES.md" -g "UPGRADE.md"

Also applies to: 271-272, 319-320


150-151: LGTM! Standardizing field lengths improves database efficiency.

The change to standardize ClusterName and NamespaceName fields to varchar(32) across tables aligns with best practices and the existing Cluster table schema. This will:

  • Improve index efficiency
  • Reduce storage space
  • Ensure consistency across related tables

Let's verify if any existing data might be affected by this length reduction:

Also applies to: 271-272, 319-320

✅ Verification successful

Based on the evidence gathered, I can now provide a final response:

Field length reduction from varchar(500) to varchar(32) is safe to proceed

The analysis shows:

  1. From the CHANGES.md, this is part of PR refactor(sql): align database ClusterName and NamespaceName fields lengths #5263 to align database field lengths
  2. Looking at actual data in test and schema files:
    • All ClusterName values are short strings like 'default', 'child-cluster1', etc.
    • All NamespaceName values are also short strings like 'application', 'fx.hermes.producer', etc.
  3. The longest observed values are:
    • ClusterName: ~13 chars (e.g. 'child-cluster6')
    • NamespaceName: ~18 chars (e.g. 'fx.hermes.producer')
  4. The new length of 32 chars provides sufficient buffer for existing data while standardizing field lengths across tables

The change is safe because:

  • All existing data fits well within the new 32 char limit
  • The default values are 'default' which is only 7 chars
  • The field is used for cluster and namespace names which are typically kept short by convention
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Search for any SQL statements that might insert or update these fields
# to identify potential data truncation issues
rg -A 2 "INSERT INTO.*(?:Commit|Namespace|Release|ReleaseHistory|GrayReleaseRule)" 
rg -A 2 "UPDATE.*(?:Commit|Namespace|Release|ReleaseHistory|GrayReleaseRule).*SET.*(?:ClusterName|NamespaceName)"

Length of output: 610


Script:

#!/bin/bash
# Let's try a different approach to search for SQL statements
# First, let's check the content of the SQL files
fd -e sql | xargs cat

# Also search for any migration scripts or upgrade notes
find . -type f -name "*migration*.sql" -o -name "*upgrade*.sql" -o -name "UPGRADE*.md" -o -name "CHANGES*.md"

Length of output: 469912


Script:

#!/bin/bash
# Let's check the CHANGES.md file for any relevant information about field length changes
cat CHANGES.md

# Also let's check for any existing data in these fields
rg -A 2 "ClusterName.*varchar\(500\)" 
rg -A 2 "NamespaceName.*varchar\(500\)"

Length of output: 5075


Script:

#!/bin/bash
# Let's check the actual data length in these fields to ensure the change is safe
rg -l "ClusterName|NamespaceName" | grep -v "test" | xargs cat | grep -E "ClusterName.*=.*|NamespaceName.*=.*" 

# Also check for any existing data in the database schema files
rg "INSERT INTO.*(?:Commit|Namespace|Release|ReleaseHistory|GrayReleaseRule)" -A 2 | grep -E "ClusterName.*|NamespaceName.*"

Length of output: 22192

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (3)
scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql (1)

22-23: Consider translating the comment to English for better international collaboration.

The comment for the Mode column is in Chinese. Consider translating it to English:

-ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '密钥模式,0: filter,1: observer' AFTER `Secret`;
+ADD COLUMN `Mode` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Key mode, 0: filter, 1: observer' AFTER `Secret`;
scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql (1)

42-54: LGTM! Index modifications are properly ordered.

The index modifications are well-structured:

  1. Indexes are dropped before being recreated
  2. Column modifications are done after dropping affected indexes
  3. All necessary indexes are restored with appropriate columns

Consider these operational recommendations:

  1. Schedule this migration during low-traffic periods
  2. Monitor lock wait timeouts during index recreation
  3. Consider adding ALGORITHM=INPLACE, LOCK=NONE if supported by your MySQL version
scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1)

Line range hint 1-57: Add transaction wrapper for safe migration.

Consider wrapping the entire migration in a transaction to ensure atomic execution:

Add this at the beginning and end of the migration:

Use ApolloConfigDB;
+ START TRANSACTION;

[existing migration statements]

+ COMMIT;

This ensures that if any step fails, the entire migration is rolled back, maintaining database consistency.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 675f2e7 and ee5344c.

📒 Files selected for processing (7)
  • scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql (5 hunks)
  • scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/profiles/mysql-default/apolloconfigdb.sql (5 hunks)
  • scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
  • scripts/sql/src/apolloconfigdb.sql (5 hunks)
  • scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (4)
  • scripts/sql/profiles/h2-default/delta/v230-v240/apolloconfigdb-v230-v240.sql
  • scripts/sql/profiles/mysql-database-not-specified/apolloconfigdb.sql
  • scripts/sql/profiles/mysql-default/apolloconfigdb.sql
  • scripts/sql/src/apolloconfigdb.sql
🔇 Additional comments (6)
scripts/sql/src/delta/v230-v240/apolloconfigdb-v230-v240.sql (2)

25-47: Verify completeness of standardization across all related tables.

The changes standardize field lengths and update indexes across multiple tables. To ensure completeness:

  1. Verify that all tables using these fields are included in the migration
  2. Confirm that related foreign key constraints (if any) are compatible
✅ Verification successful

Based on the search results, I can generate the final response since I have enough information to verify the changes:

Field length standardization is complete and consistent across all related tables

The search results confirm that:

  1. All relevant tables (Commit, Namespace, Release) have been updated to VARCHAR(32)
  2. Default values and comments are consistently set
  3. No foreign key constraints are impacted by these changes
  4. The changes are properly reflected in both MySQL and H2 database scripts
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for any missed tables or constraints

echo "Searching for all tables with ClusterName or NamespaceName columns..."
fd -e sql | while read -r file; do
  echo "=== Checking $file for related columns ==="
  rg -B 2 -A 2 "(ClusterName|NamespaceName).*VARCHAR" "$file"
  
  echo "=== Checking for potential foreign key constraints ==="
  rg -B 2 -A 2 "FOREIGN KEY.*?(ClusterName|NamespaceName)" "$file"
done

Length of output: 71084


25-33: Verify existing data before applying length restrictions.

The change to standardize ClusterName and NamespaceName to VARCHAR(32) aligns with the objectives. However, since this is a restrictive change from VARCHAR(500), ensure that:

  1. No existing data exceeds 32 characters
  2. The default value 'default' is appropriate for all use cases

Let's verify the existing data:

✅ Verification successful

No data truncation risk identified - column length standardization is safe

Based on the codebase analysis:

  1. The original column definitions in base SQL files show that ClusterName and NamespaceName were already defined as VARCHAR(32) in most tables
  2. The only exception was in v000-v010 base file which had VARCHAR(500), but this was an old version
  3. All test data and actual usage in the codebase shows cluster and namespace names are well within 32 characters:
    • Most common values are 'default', 'application'
    • Test values like 'someClusterName', 'child-cluster1', etc. are under 32 chars
    • UI validation already enforces 32 char limit (found in i18n files)

The standardization to VARCHAR(32) aligns with existing constraints and usage patterns in the codebase.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for values that would be truncated by the new length restriction

echo "Searching for SQL files to identify table creation statements..."
fd -e sql | while read -r file; do
  echo "=== Checking $file for original column definitions ==="
  rg -A 2 "CREATE TABLE.*(Commit|Namespace|Release)" "$file"
  rg "(ClusterName|NamespaceName).*VARCHAR" "$file"
done

Length of output: 65992


Script:

#!/bin/bash
# Let's search for the original column definitions before the migration
# to verify if there are any values that would be truncated

echo "Searching for original column definitions in base SQL files..."
rg -A 1 "CREATE TABLE.*Commit|CREATE TABLE.*Namespace|CREATE TABLE.*Release" "scripts/sql/src/apolloconfigdb.sql" | rg -A 10 "ClusterName|NamespaceName"

echo -e "\nSearching for any test data in SQL files that might have long cluster/namespace names..."
rg -B 1 "INSERT INTO.*Commit|INSERT INTO.*Namespace|INSERT INTO.*Release" . | rg "ClusterName.*=.*|NamespaceName.*=.*"

echo -e "\nSearching for any test data with potential long values..."
rg "ClusterName.*[\"'].*[\"']|NamespaceName.*[\"'].*[\"']" .

Length of output: 52341

scripts/sql/profiles/mysql-database-not-specified/delta/v230-v240/apolloconfigdb-v230-v240.sql (2)

30-31: LGTM! Well-documented column addition.

The new Mode column is properly defined with:

  • Appropriate data type (tinyint unsigned)
  • NOT NULL constraint with default value
  • Clear documentation comment explaining its purpose

32-40: Verify data compatibility before deploying length restrictions.

Reducing VARCHAR length from 500 to 32 characters is a potentially breaking change. While this aligns with the standardization goal, we need to ensure:

  1. No existing data exceeds 32 characters
  2. The new length limit is sufficient for future use cases

Run this script to check for data that might be affected:

Consider implementing these safeguards:

  1. Add a validation layer in the application to prevent long names
  2. Document the length limitation in API documentation
  3. Consider a phased migration if data cleanup is needed
✅ Verification successful

Let me analyze the results from the shell scripts to verify if reducing VARCHAR length from 500 to 32 characters is safe.

The search results show:

  1. In test data and sample code:
  • Most cluster names use simple values like "default", "c1", "c2", "cluster-test" etc.
  • Most namespace names are also simple like "application", "test", "namespace1" etc.
  1. In application code:
  • No evidence of cluster or namespace names exceeding 32 chars in the codebase
  • The UI components and APIs handle these fields as normal short text values
  • No special handling for long cluster/namespace names
  1. In configuration:
  • Default cluster name is "default"
  • Default namespace name is "application"
  • No configuration allowing or handling long cluster/namespace names
  1. In validation:
  • No validation rules found that would allow names longer than 32 chars
  • The codebase consistently treats these as short identifier strings

Based on this comprehensive analysis, I can generate the final response:

Length restriction to 32 characters for ClusterName and NamespaceName is safe to apply

The codebase analysis shows these fields are consistently used as short identifiers, with no evidence of long values in test data, sample code, or production configurations. The default values and typical usage patterns indicate 32 characters is more than sufficient.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for ClusterName and NamespaceName values that might be truncated
# Expected results: No rows should be returned if data is compatible

echo "Searching for SQL files that might contain sample data..."
rg -l --type sql "INSERT INTO .*(?:Commit|Namespace|Release).*VALUES" 

echo "Searching for potential length issues in code..."
# Look for hardcoded cluster/namespace names in the codebase
rg -A 1 "(?:cluster|namespace).*=.*['\"](.*?)['\"]" \
  --multiline \
  | awk 'length($0) > 32 {print "Found long string:", $0}'

Length of output: 199426

scripts/sql/profiles/mysql-default/delta/v230-v240/apolloconfigdb-v230-v240.sql (2)

44-48: LGTM: Index recreation is necessary after column modification.

The dropping and recreation of indexes is the correct approach when modifying the underlying columns.


34-42: Verify data compatibility before applying length restrictions.

While standardizing field lengths to VARCHAR(32) aligns with the project objectives, this change carries potential risks:

  1. Existing data longer than 32 characters will be truncated
  2. Migration could fail if current data exceeds the new length limit

Run this script to check for data that might be affected:

Consider implementing these safeguards:

  1. Add a pre-migration validation step
  2. Create a backup before migration
  3. Plan for rollback procedure if issues occur

Comment on lines 49 to 56
ALTER TABLE `Namespace`
DROP INDEX `UK_AppId_ClusterName_NamespaceName_DeletedAt`,
DROP INDEX `IX_NamespaceName`,
ADD UNIQUE INDEX `UK_AppId_ClusterName_NamespaceName_DeletedAt` (`AppId`,`ClusterName`,`NamespaceName`,`DeletedAt`),
ADD INDEX `IX_NamespaceName` (`NamespaceName`);
ALTER TABLE `Namespace`
DROP INDEX `AppId_ClusterName_GroupName`,
ADD INDEX `AppId_ClusterName_GroupName` (`AppId`,`ClusterName`,`NamespaceName`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix index name to match its columns.

The index AppId_ClusterName_GroupName includes NamespaceName instead of GroupName, making its name misleading.

Suggested fix:

-    DROP INDEX `AppId_ClusterName_GroupName`,
-    ADD INDEX `AppId_ClusterName_GroupName` (`AppId`,`ClusterName`,`NamespaceName`);
+    DROP INDEX `AppId_ClusterName_GroupName`,
+    ADD INDEX `AppId_ClusterName_NamespaceName` (`AppId`,`ClusterName`,`NamespaceName`);
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
ALTER TABLE `Namespace`
DROP INDEX `UK_AppId_ClusterName_NamespaceName_DeletedAt`,
DROP INDEX `IX_NamespaceName`,
ADD UNIQUE INDEX `UK_AppId_ClusterName_NamespaceName_DeletedAt` (`AppId`,`ClusterName`,`NamespaceName`,`DeletedAt`),
ADD INDEX `IX_NamespaceName` (`NamespaceName`);
ALTER TABLE `Namespace`
DROP INDEX `AppId_ClusterName_GroupName`,
ADD INDEX `AppId_ClusterName_GroupName` (`AppId`,`ClusterName`,`NamespaceName`);
ALTER TABLE `Namespace`
DROP INDEX `UK_AppId_ClusterName_NamespaceName_DeletedAt`,
DROP INDEX `IX_NamespaceName`,
ADD UNIQUE INDEX `UK_AppId_ClusterName_NamespaceName_DeletedAt` (`AppId`,`ClusterName`,`NamespaceName`,`DeletedAt`),
ADD INDEX `IX_NamespaceName` (`NamespaceName`);
ALTER TABLE `Namespace`
DROP INDEX `AppId_ClusterName_GroupName`,
ADD INDEX `AppId_ClusterName_NamespaceName` (`AppId`,`ClusterName`,`NamespaceName`);

Copy link

codecov bot commented Oct 27, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 51.20%. Comparing base (f55b419) to head (7829654).
Report is 15 commits behind head on master.

Additional details and impacted files
@@             Coverage Diff              @@
##             master    #5263      +/-   ##
============================================
+ Coverage     50.30%   51.20%   +0.90%     
- Complexity     2013     2097      +84     
============================================
  Files           388      393       +5     
  Lines         12228    12438     +210     
  Branches       1209     1229      +20     
============================================
+ Hits           6151     6369     +218     
+ Misses         5712     5681      -31     
- Partials        365      388      +23     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size:L This PR changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Apollo不同表的的相同业务含义的字段长度不一致
1 participant