Skip to content

SQL basics - RDBMS and its features.#1817

Open
dheerajsn2004 wants to merge 1 commit intoupgrad-edu:masterfrom
dheerajsn2004:master
Open

SQL basics - RDBMS and its features.#1817
dheerajsn2004 wants to merge 1 commit intoupgrad-edu:masterfrom
dheerajsn2004:master

Conversation

@dheerajsn2004
Copy link

My name is Dheeraj S N.
So I modified the contents in the Course1 file.
I added my Name, a module name and things I learnt in that module.

Copilot AI review requested due to automatic review settings February 7, 2026 17:44
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Updates the course notes repository by adding a new learner/module entry to Course1, but also introduces IntelliJ/IDEA project configuration files that are typically not intended for version control.

Changes:

  • Added a new entry (name + module learnings) to Course1.
  • Added multiple .idea/ IDE configuration files to the repository.

Reviewed changes

Copilot reviewed 1 out of 6 changed files in this pull request and generated 7 comments.

Show a summary per file
File Description
Course1 Adds a new learner entry and module learnings.
.idea/vcs.xml Adds IDE VCS mapping configuration (likely should not be committed).
.idea/modules.xml Adds IDE module configuration (likely should not be committed).
.idea/misc.xml Adds IDE project/JDK settings (likely should not be committed).
.idea/Upgrad.iml Adds IDE module file (likely should not be committed).
.idea/.gitignore Adds IDEA-local ignores, but doesn’t address committing .idea/ files overall.
Files not reviewed (5)
  • .idea/.gitignore: Language not supported
  • .idea/Upgrad.iml: Language not supported
  • .idea/misc.xml: Language not supported
  • .idea/modules.xml: Language not supported
  • .idea/vcs.xml: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +1 to +9
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module> No newline at end of file
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

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

These IntelliJ/IDEA project files are machine- and developer-specific and typically shouldn't be committed to the repository. Please remove this file from the PR and add a root-level .gitignore entry to ignore .idea/ (and *.iml) going forward.

Copilot uses AI. Check for mistakes.
Comment on lines +1 to +3
# Default ignored files
/shelf/
/workspace.xml
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

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

Adding .idea/.gitignore doesn't prevent committing other .idea files that are already in the PR. Prefer adding a repository root .gitignore entry for .idea/ (and *.iml) and remove the committed IDE config files from version control.

Suggested change
# Default ignored files
/shelf/
/workspace.xml
# Intentionally left blank.
# IDE files should be ignored via the repository root .gitignore (e.g. .idea/ and *.iml).

Copilot uses AI. Check for mistakes.
Comment on lines +12 to +16
Dheeraj S N
RDBMS and its
1) Learnt about the features of RDBMS.
2) Learnt the importance of Normalization while structuring the database.
3) Learnt about ER diagrams
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

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

The added module entry doesn't match the module list at the top of this file (Algorithm Analysis / Divide and Conquer / Dynamic Programming). Please either select one of the listed modules for Course1 or update the course template/module list so the new entry is consistent.

Copilot uses AI. Check for mistakes.
Understanding the prolem and implementing a solution which is space and time efficient by structuring it into sub problems.

Dheeraj S N
RDBMS and its
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

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

The module name "RDBMS and its" looks truncated/incomplete. Consider updating it to the full module/title (e.g., "RDBMS and its features") so the entry reads clearly.

Suggested change
RDBMS and its
RDBMS and its features

Copilot uses AI. Check for mistakes.
Comment on lines +1 to +6
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project> No newline at end of file
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

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

These IntelliJ/IDEA project files are machine- and developer-specific and typically shouldn't be committed to the repository. Please remove this file from the PR and add a root-level .gitignore entry to ignore .idea/ (and *.iml) going forward.

Suggested change
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

Copilot uses AI. Check for mistakes.
Comment on lines +2 to +8
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/Upgrad.iml" filepath="$PROJECT_DIR$/.idea/Upgrad.iml" />
</modules>
</component>
</project> No newline at end of file
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

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

These IntelliJ/IDEA project files are machine- and developer-specific and typically shouldn't be committed to the repository. Please remove this file from the PR and add a root-level .gitignore entry to ignore .idea/ (and *.iml) going forward.

Suggested change
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/Upgrad.iml" filepath="$PROJECT_DIR$/.idea/Upgrad.iml" />
</modules>
</component>
</project>
<!--
IntelliJ IDEA project configuration was removed from version control.
This file is intentionally left minimal; .idea/ and *.iml should be ignored via .gitignore.
-->

Copilot uses AI. Check for mistakes.
Comment on lines +1 to +6
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="corretto-17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project> No newline at end of file
Copy link

Copilot AI Feb 7, 2026

Choose a reason for hiding this comment

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

These IntelliJ/IDEA project files are machine- and developer-specific and typically shouldn't be committed to the repository. Please remove this file from the PR and add a root-level .gitignore entry to ignore .idea/ (and *.iml) going forward.

Suggested change
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="corretto-17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>
<!-- Intentionally left blank.
IntelliJ IDEA project configuration should not be committed to version control.
This file is retained only as an empty placeholder. -->

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant