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
use std::{sync::Arc, time::Instant}; | |
use datafusion::{ | |
arrow::{array::RecordBatch, json::ArrayWriter}, | |
prelude::SessionContext, | |
}; | |
use iceberg::{io::FileIO, table::StaticTable, TableIdent}; | |
use iceberg_datafusion::IcebergTableProvider; | |
use lambda_runtime::{ | |
run, service_fn, |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Magic words:
psql -U postgres
Some interesting flags (to see all, use -h
or --help
depending on your psql version):
-E
: will describe the underlaying queries of the\
commands (cool for learning!)-l
: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)