forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from xmnlab/master
Code refactored; add tests, ci and docs;
- Loading branch information
Showing
29 changed files
with
1,030 additions
and
760 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
DROP TABLE IF EXISTS diamonds; | ||
|
||
CREATE TABLE diamonds ( | ||
carat FLOAT, | ||
cut TEXT, | ||
color TEXT, | ||
clarity TEXT, | ||
depth FLOAT, | ||
table_ FLOAT, | ||
price BIGINT, | ||
x FLOAT, | ||
y FLOAT, | ||
z FLOAT | ||
); | ||
|
||
DROP TABLE IF EXISTS batting; | ||
|
||
CREATE TABLE batting ( | ||
playerID VARCHAR(255), | ||
yearID BIGINT, | ||
stint BIGINT, | ||
teamID VARCHAR(7), | ||
lgID VARCHAR(7), | ||
G BIGINT, | ||
AB BIGINT, | ||
R BIGINT, | ||
H BIGINT, | ||
X2B BIGINT, | ||
X3B BIGINT, | ||
HR BIGINT, | ||
RBI BIGINT, | ||
SB BIGINT, | ||
CS BIGINT, | ||
BB BIGINT, | ||
SO BIGINT, | ||
IBB BIGINT, | ||
HBP BIGINT, | ||
SH BIGINT, | ||
SF BIGINT, | ||
GIDP BIGINT | ||
); | ||
|
||
DROP TABLE IF EXISTS awards_players; | ||
|
||
CREATE TABLE awards_players ( | ||
playerID VARCHAR(255), | ||
awardID VARCHAR(255), | ||
yearID BIGINT, | ||
lgID VARCHAR(7), | ||
tie VARCHAR(7), | ||
notes VARCHAR(255) | ||
); | ||
|
||
DROP TABLE IF EXISTS functional_alltypes; | ||
|
||
CREATE TABLE functional_alltypes ( | ||
index BIGINT, | ||
Unnamed_ BIGINT, | ||
id INTEGER, | ||
bool_col BOOLEAN, | ||
tinyint_col SMALLINT, | ||
smallint_col SMALLINT, | ||
int_col INTEGER, | ||
bigint_col BIGINT, | ||
float_col FLOAT, | ||
double_col DOUBLE, | ||
date_string_col TEXT, | ||
string_col TEXT, | ||
timestamp_col TIMESTAMP, | ||
year_ INTEGER, | ||
month_ INTEGER | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.