Last active
March 17, 2020 20:30
-
-
Save t3rmin4t0r/a40801f2d5799723ca7827663e3b3268 to your computer and use it in GitHub Desktop.
TPC-DS dist to first_names.awk
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
grep "^add.*,.*," names.dst | \ | |
sed -e "s/:/,/" -e "s/^add/,/" -e "s/;//" \ | |
| awk 'BEGIN {print "create temporary table first_names(name String, male int, female int, neutral int);"} \ | |
/^,/ {if(NR % 1000 == 1) {print "; insert into first_names values", substr($0,2)} else {print} } '\ | |
> names.sql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment