mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-27 16:32:54 +00:00
* feat: adds database() function to return current db * refactor: refactor meta src and client with new protos * feat: impl migrate_region and query_procedure_state for procedure service/client * fix: format * temp commit * feat: impl migrate_region SQL function * chore: clean code for review * fix: license header * fix: toml format * chore: update proto dependency * chore: apply suggestion Co-authored-by: Weny Xu <wenymedia@gmail.com> * chore: apply suggestion Co-authored-by: Weny Xu <wenymedia@gmail.com> * chore: apply suggestion Co-authored-by: JeremyHi <jiachun_feng@proton.me> * chore: apply suggestion Co-authored-by: fys <40801205+fengys1996@users.noreply.github.com> * chore: print key when parsing procedure id fails * chore: comment * chore: comment for MigrateRegionFunction --------- Co-authored-by: Weny Xu <wenymedia@gmail.com> Co-authored-by: JeremyHi <jiachun_feng@proton.me> Co-authored-by: fys <40801205+fengys1996@users.noreply.github.com>
29 lines
337 B
Plaintext
29 lines
337 B
Plaintext
use public;
|
|
|
|
Affected Rows: 0
|
|
|
|
select database();
|
|
|
|
+------------+
|
|
| database() |
|
|
+------------+
|
|
| public |
|
|
+------------+
|
|
|
|
use information_schema;
|
|
|
|
Affected Rows: 0
|
|
|
|
select database();
|
|
|
|
+--------------------+
|
|
| database() |
|
|
+--------------------+
|
|
| information_schema |
|
|
+--------------------+
|
|
|
|
use public;
|
|
|
|
Affected Rows: 0
|
|
|