mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Merge pull request #333 from andygrove/update-cargo-toml
Update links to reflect repository move to sqlparser-rs GitHub org
This commit is contained in:
commit
31549b9241
6 changed files with 11 additions and 11 deletions
|
@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
Given that the parser produces a typed AST, any changes to the AST will technically be breaking and thus will result in a `0.(N+1)` version. We document changes that break via addition as "Added".
|
||||
|
||||
## [Unreleased]
|
||||
Check https://github.com/ballista-compute/sqlparser-rs/commits/main for undocumented changes.
|
||||
Check https://github.com/sqlparser-rs/sqlparser-rs/commits/main for undocumented changes.
|
||||
|
||||
|
||||
## [0.9.0] 2020-03-21
|
||||
|
|
|
@ -3,10 +3,10 @@ name = "sqlparser"
|
|||
description = "Extensible SQL Lexer and Parser with support for ANSI SQL:2011"
|
||||
version = "0.9.1-alpha.0"
|
||||
authors = ["Andy Grove <andygrove73@gmail.com>"]
|
||||
homepage = "https://github.com/ballista-compute/sqlparser-rs"
|
||||
homepage = "https://github.com/sqlparser-rs/sqlparser-rs"
|
||||
documentation = "https://docs.rs/sqlparser/"
|
||||
keywords = [ "ansi", "sql", "lexer", "parser" ]
|
||||
repository = "https://github.com/ballista-compute/sqlparser-rs"
|
||||
repository = "https://github.com/sqlparser-rs/sqlparser-rs"
|
||||
license = "Apache-2.0"
|
||||
include = [
|
||||
"src/**/*.rs",
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
[](https://opensource.org/licenses/Apache-2.0)
|
||||
[](https://crates.io/crates/sqlparser)
|
||||
[](https://github.com/ballista-compute/sqlparser-rs/actions?query=workflow%3ARust+branch%3Amain)
|
||||
[](https://coveralls.io/github/ballista-compute/sqlparser-rs?branch=main)
|
||||
[](https://github.com/sqlparser-rs/sqlparser-rs/actions?query=workflow%3ARust+branch%3Amain)
|
||||
[](https://coveralls.io/github/sqlparser-rs/sqlparser-rs?branch=main)
|
||||
[](https://gitter.im/sqlparser-rs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
|
||||
The goal of this project is to build a SQL lexer and parser capable of parsing
|
||||
|
@ -123,10 +123,10 @@ resources.
|
|||
|
||||
[tdop-tutorial]: https://eli.thegreenplace.net/2010/01/02/top-down-operator-precedence-parsing
|
||||
[`cargo fmt`]: https://github.com/rust-lang/rustfmt#on-the-stable-toolchain
|
||||
[current issues]: https://github.com/ballista-compute/sqlparser-rs/issues
|
||||
[current issues]: https://github.com/sqlparser-rs/sqlparser-rs/issues
|
||||
[DataFusion]: https://github.com/apache/arrow-datafusion
|
||||
[LocustDB]: https://github.com/cswinter/LocustDB
|
||||
[Ballista]: https://github.com/ballista-compute/ballista
|
||||
[Ballista]: https://github.com/apache/arrow-datafusion/tree/master/ballista
|
||||
[Pratt Parser]: https://tdop.github.io/
|
||||
[sql-2016-grammar]: https://jakewheat.github.io/sql-overview/sql-2016-foundation-grammar.html
|
||||
[sql-standard]: https://en.wikipedia.org/wiki/ISO/IEC_9075
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## Prerequisites
|
||||
Publishing to crates.io has been automated via GitHub Actions, so you will only
|
||||
need push access to the [ballista-compute GitHub repository](https://github.com/ballista-compute/sqlparser-rs)
|
||||
need push access to the [sqlparser-rs GitHub repository](https://github.com/sqlparser-rs/sqlparser-rs)
|
||||
in order to publish a release.
|
||||
|
||||
We use the [`cargo release`](https://github.com/sunng87/cargo-release)
|
||||
|
@ -41,7 +41,7 @@ $ cargo install cargo-release
|
|||
* Create a new tag (e.g. `v0.8.0`) locally
|
||||
* Push the new tag to the specified remote (`upstream` in the above
|
||||
example), which will trigger a publishing process to crates.io as part of
|
||||
the [corresponding GitHub Action](https://github.com/ballista-compute/sqlparser-rs/blob/main/.github/workflows/rust.yml).
|
||||
the [corresponding GitHub Action](https://github.com/sqlparser-rs/sqlparser-rs/blob/main/.github/workflows/rust.yml).
|
||||
|
||||
Note that credentials for authoring in this way are securely stored in
|
||||
the (GitHub) repo secrets as `CRATE_TOKEN`.
|
||||
|
|
|
@ -3295,7 +3295,7 @@ fn parse_start_transaction() {
|
|||
verified_stmt("START TRANSACTION ISOLATION LEVEL REPEATABLE READ");
|
||||
verified_stmt("START TRANSACTION ISOLATION LEVEL SERIALIZABLE");
|
||||
|
||||
// Regression test for https://github.com/ballista-compute/sqlparser-rs/pull/139,
|
||||
// Regression test for https://github.com/sqlparser-rs/sqlparser-rs/pull/139,
|
||||
// in which START TRANSACTION would fail to parse if followed by a statement
|
||||
// terminator.
|
||||
assert_eq!(
|
||||
|
|
|
@ -233,7 +233,7 @@ fn parse_create_table_with_inherit() {
|
|||
#[test]
|
||||
fn parse_create_table_empty() {
|
||||
// Zero-column tables are weird, but supported by at least PostgreSQL.
|
||||
// <https://github.com/ballista-compute/sqlparser-rs/pull/94>
|
||||
// <https://github.com/sqlparser-rs/sqlparser-rs/pull/94>
|
||||
let _ = pg_and_generic().verified_stmt("CREATE TABLE t ()");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue