Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
taobao-zhaolin committed Feb 20, 2012
0 parents commit c2c0603
Show file tree
Hide file tree
Showing 28 changed files with 6,425 additions and 0 deletions.
57 changes: 57 additions & 0 deletions pom.xml
@@ -0,0 +1,57 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.taobao</groupId>
<artifactId>sqlautoreview</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>sqlautoreview</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>release.xml</descriptor>
</descriptors>
</configuration>
</plugin>

</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>

<dependencies>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
</dependency>

<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.18</version>
</dependency>

<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
</dependency>
</dependencies>


</project>
26 changes: 26 additions & 0 deletions release.xml
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<assembly>
<id>sqlautoreview</id>
<formats>
<format>dir</format>
<format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
<includes>
<include>bin/*</include>
<include>conf/*</include>
</includes>
<excludes>
<exclude>**/src/**</exclude>
<exclude>**/target/**</exclude>
<exclude>**/.*/**</exclude>
</excludes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>/lib</outputDirectory>
</dependencySet>
</dependencySets>
</assembly>
Binary file added sqlautoreview.docx
Binary file not shown.
Binary file added sqlautoreview.ppt
Binary file not shown.
27 changes: 27 additions & 0 deletions src/main/java/com/taobao/sqlautoreview/Column_Node.java
@@ -0,0 +1,27 @@
/**
* (C) 2011-2012 Alibaba Group Holding Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
*
* Authors:
* danchen <danchen@taobao.com>
*
*/

package com.taobao.sqlautoreview;

public class Column_Node {
//列名
String column_name;
//列的类型
String data_type;
//列的类型
String column_type;
//是否为空
String is_nullable;
//采样的势
int sample_card;
}

0 comments on commit c2c0603

Please sign in to comment.