Created
April 17, 2011 00:56
-
-
Save DGaffney/923653 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| ## consumer.pm : tsvs_to_mysql | |
| my $columns = join(",",@$SocialFlow::140Kit::Schema::Result::Click::imported_cols); | |
| my $query = "LOAD DATA INFILE '$click_stream_tsv' | |
| IGNORE INTO TABLE `clicks` | |
| CHARACTER SET 'utf8' | |
| ($columns)"; | |
| ## click.pm | |
| sub cols { | |
| [ | |
| ["a"], | |
| ["c"], | |
| ["nk"], | |
| ["tz"], | |
| ["gr"], | |
| ["g"], | |
| ["i"], | |
| ["h"], | |
| ["k"], | |
| ["l"], | |
| ["al"], | |
| ["hh"], | |
| ["r"], | |
| ["u"], | |
| ["t"], | |
| ["hc"], | |
| ["cy"], | |
| ["ll"], | |
| ]; | |
| } | |
| our $imported_cols = cols; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment