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

DO NOT MERGE #1443

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Welcome to Mondrian

Mondrian is an Online Analytical Processing (OLAP) server that enables business users to analyze large quantities of data in real-time.

## Sub modules
Expand Down
5 changes: 5 additions & 0 deletions mondrian/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions mondrian/src/main/java/mondrian/spi/impl/AccessDialect.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,16 @@ protected void quoteDateLiteral(
String value,
Date date)
{

//////////////////////////
// This is an error on purpose to test CodeQL
Boolean done = false;
while (!done) {
System.out.println("Hello world!");
done = true;
}
//////////////////////////////////

// Access accepts #01/23/2008# but not SQL:2003 format.
buf.append("#");
Calendar calendar = Calendar.getInstance();
Expand Down
Loading