Skip to content

Commit

Permalink
fix: typo for DBeaver in comments change DBEver to DBeaver (#9092)
Browse files Browse the repository at this point in the history
Signed-off-by: yihong0618 <[email protected]>
  • Loading branch information
yihong0618 authored Jan 17, 2025
1 parent 0341c85 commit aab9e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/cubesql/cubesql/src/compile/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub fn parse_sql_to_statements(
let query = query.replace("unsigned integer", "bigint");
let query = query.replace("UNSIGNED INTEGER", "bigint");

// DBEver
// DBeaver
let query = query.replace(
"SELECT db.oid,db.* FROM pg_catalog.pg_database db",
"SELECT db.oid as _oid,db.* FROM pg_catalog.pg_database db",
Expand Down

0 comments on commit aab9e8f

Please sign in to comment.