mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-09-23 06:02:30 +00:00
update branch references to main
(#215)
* update branch references to `main` * ensure we point to ballista-compute * update a couple of links to point to ballista-compute
This commit is contained in:
parent
2a6d5f2b61
commit
8cc7702a8c
4 changed files with 7 additions and 6 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".
|
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]
|
## [Unreleased]
|
||||||
Check https://github.com/andygrove/sqlparser-rs/commits/master for undocumented changes.
|
Check https://github.com/ballista-compute/sqlparser-rs/commits/main for undocumented changes.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
@ -166,3 +166,4 @@ We don't have a changelog for the changes made in 2018, but thanks to @crw5996,
|
||||||
|
|
||||||
## [0.1.0] - 2018-09-03
|
## [0.1.0] - 2018-09-03
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
[](https://opensource.org/licenses/Apache-2.0)
|
[](https://opensource.org/licenses/Apache-2.0)
|
||||||
[](https://crates.io/crates/sqlparser)
|
[](https://crates.io/crates/sqlparser)
|
||||||
[](https://travis-ci.org/andygrove/sqlparser-rs)
|
[](https://travis-ci.org/ballista-computee/sqlparser-rs)
|
||||||
[](https://coveralls.io/github/andygrove/sqlparser-rs?branch=master)
|
[](https://coveralls.io/github/ballista-compute/sqlparser-rs?branch=main)
|
||||||
[](https://gitter.im/sqlparser-rs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[](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
|
The goal of this project is to build a SQL lexer and parser capable of parsing
|
||||||
|
@ -123,7 +123,7 @@ resources.
|
||||||
|
|
||||||
[tdop-tutorial]: https://eli.thegreenplace.net/2010/01/02/top-down-operator-precedence-parsing
|
[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
|
[`cargo fmt`]: https://github.com/rust-lang/rustfmt#on-the-stable-toolchain
|
||||||
[current issues]: https://github.com/andygrove/sqlparser-rs/issues
|
[current issues]: https://github.com/ballista-compute/sqlparser-rs/issues
|
||||||
[DataFusion]: https://github.com/apache/arrow/tree/master/rust/datafusion
|
[DataFusion]: https://github.com/apache/arrow/tree/master/rust/datafusion
|
||||||
[LocustDB]: https://github.com/cswinter/LocustDB
|
[LocustDB]: https://github.com/cswinter/LocustDB
|
||||||
[Pratt Parser]: https://tdop.github.io/
|
[Pratt Parser]: https://tdop.github.io/
|
||||||
|
|
|
@ -2878,7 +2878,7 @@ fn parse_start_transaction() {
|
||||||
verified_stmt("START TRANSACTION ISOLATION LEVEL REPEATABLE READ");
|
verified_stmt("START TRANSACTION ISOLATION LEVEL REPEATABLE READ");
|
||||||
verified_stmt("START TRANSACTION ISOLATION LEVEL SERIALIZABLE");
|
verified_stmt("START TRANSACTION ISOLATION LEVEL SERIALIZABLE");
|
||||||
|
|
||||||
// Regression test for https://github.com/andygrove/sqlparser-rs/pull/139,
|
// Regression test for https://github.com/ballista-compute/sqlparser-rs/pull/139,
|
||||||
// in which START TRANSACTION would fail to parse if followed by a statement
|
// in which START TRANSACTION would fail to parse if followed by a statement
|
||||||
// terminator.
|
// terminator.
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
|
|
|
@ -230,7 +230,7 @@ fn parse_create_table_with_inherit() {
|
||||||
#[test]
|
#[test]
|
||||||
fn parse_create_table_empty() {
|
fn parse_create_table_empty() {
|
||||||
// Zero-column tables are weird, but supported by at least PostgreSQL.
|
// Zero-column tables are weird, but supported by at least PostgreSQL.
|
||||||
// <https://github.com/andygrove/sqlparser-rs/pull/94>
|
// <https://github.com/ballista-compute/sqlparser-rs/pull/94>
|
||||||
let _ = pg_and_generic().verified_stmt("CREATE TABLE t ()");
|
let _ = pg_and_generic().verified_stmt("CREATE TABLE t ()");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue