Skip to content

Commit

Permalink
Merge branch 'main' into add-mysql-engine
Browse files Browse the repository at this point in the history
  • Loading branch information
zjregee authored Sep 6, 2024
2 parents 455286a + 9857485 commit dfb6dde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
run: |
outdir="./target/${{ env.TARGET_DIR }}/release"
staging="${{ env.CRATE_NAME }}-${{ needs.create-release.outputs.release_version }}-${{ matrix.target }}"
mkdir -p "$staging"
cp {README.md,LICENSE-*,CHANGELOG.md} "$staging/"
if [ "${{ matrix.os }}" = "windows-2019" ]; then
cp "target/${{ matrix.target }}/release/${{ env.BIN_NAME }}.exe" "$staging/"
Expand Down
1 change: 1 addition & 0 deletions sqllogictest/src/column_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ pub trait ColumnType: Debug + PartialEq + Eq + Clone + Send + Sync {
/// - 'T' - text, varchar results
/// - 'I' - integers
/// - 'R' - floating point numbers
///
/// Any other types are represented with `?`([`DefaultColumnType::Any`]).
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum DefaultColumnType {
Expand Down

0 comments on commit dfb6dde

Please sign in to comment.