Skip to content

Commit

Permalink
database_observability: Fix selectTableName query column order (#2452)
Browse files Browse the repository at this point in the history
* Fix query select order

* Update changelog
  • Loading branch information
matthewnolf authored Jan 20, 2025
1 parent 4d4a88d commit 077b787
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Main (unreleased)

- (_Experimental_) Capture schema name for query samples in `database_observability.mysql` (@cristiangreco)

- (_Experimental_) Fix handling of view table types when detecting schema in `database_observability.mysql` (@matthewnolf)

- Add json format support for log export via faro receiver (@ravishankar15)

- Add livedebugging support for `prometheus.remote_write` (@ravishankar15)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const (
selectTableName = `
SELECT
TABLE_NAME,
CREATE_TIME,
TABLE_TYPE,
CREATE_TIME,
ifnull(UPDATE_TIME, CREATE_TIME) AS UPDATE_TIME
FROM
information_schema.tables
Expand Down

0 comments on commit 077b787

Please sign in to comment.