Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: faisaltheparttimecoder/mock-data
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.8
Choose a base ref
Loading
...
head repository: faisaltheparttimecoder/mock-data
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
  • 20 commits
  • 42 files changed
  • 5 contributors

Commits on Apr 23, 2021

  1. Configuration menu
    Copy the full SHA
    723ed2e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e8939fb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd8b0bc View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2021

  1. Docker containerizing (#41)

    * add actoins, dockerfile, golangci
    
    * 👷 try build and push
    
    * 💡 suggestions to readme
    
    * Fixing Typo
    
    Co-authored-by: Artem <32013768+art-frela@users.noreply.github.com>
    
    * 👷 add volume instruction to dockerfile
    
    Co-authored-by: Faisal Ali <fai28683@gmail.com>
    art-frela and faisaltheparttimecoder authored Jun 9, 2021
    Configuration menu
    Copy the full SHA
    0c99b58 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2021

  1. Support populating foreign tables in Postgres (#42)

    Foreign data wrappers allow for querying schemas defined in external systems from within Postgres. This commit adds support for populating foreign tables in Postgres, motivated by the need for populating a clickhouse schema accessed through a particular foreign data wrapper
    Miguel Fernández authored Jun 17, 2021
    Configuration menu
    Copy the full SHA
    5d4cbcd View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2021

  1. V3.0 (#44)

    * Bug fix: RandomTimeStampTzWithDecimals
    
    RandomTimeStampTzWithDecimals fails due to a typo with the year variable that is being passed
    
    * make the function public
    
    make the function isSubStringAvailableOnString from private to public
    
    * Avoid using future dates
    
    Try to use the date that is from the current time, there is no need to place dates for the future
    
    * Protect function from null value
    
    * Test suite: Randomizer
    
    Build unit test cases for randomizer
    
    * update the version of mock-data release
    
    * reducing the duplicate code in randomizer test cases
    
    * update the function name change
    
    * All test suites for helper.go
    
    * Test cases for functions inside datatype.go
    
    * Rearrangement of functions
    
    * Unit test cases for engine.go
    
    * Small correction to the database config name
    
    * The function should send in error so we can trap and understand the error
    
    * update go.sum
    
    * single test doesn't work with variable functions, so using named function to overcome the issue
    
    * Testcases for sql.go
    
    * update the skeleton with additional types or objects
    
    * remove the database config
    
    * test cases for skeletons.go
    
    * implemented logger.go testcases
    
    * test cases for constraintBackup.go
    
    * Testcases for schema.go
    
    * reducing variable count
    
    * testcases for database.go
    
    * testcases for tables.go
    
    * format & correction
    
    Formatting via go fmt
    correction to demo database that breaks the check when run concurrently, it now cleans up all the tables on the database
    
    * hidden feature and datatype correction
    
    separate out the database cleanup for separate function , that can triggered by a hidden vairable
    
    replace postgres has the owner to mockdata
    
    and datatype cleanup
    
    * testcases for worker.go
    
    * cleanup
    
    * cleanup of testcases
    
    * dont remove postgres role
    
    * add testcase for copy data function
    
    * testcases for filemanager.go
    
    * testcase for constraintRestore.go
    
    * testcases correction
    
    * Introduction of realstic data
    
    Now you can choose realistic data to be loaded to the table
    
    * Typo & Corrections
    
    * testcase for custom.go
    
    * Finishing up the v3.0
    
    - Fixing up broken ci job
    - cleanup the code
    - update readme
    
    * add postgres service to ci.yml
    
    * remove macos-latest
    
    macos-latest fails with missing dependency, for now there is no need for macos test, we can add and fix anything later if needed
    
    * remove ci.yml from being run on v3.0 branch
    
    * testing the codecov ci step
    
    * codecov works now , removing the branch v3.0 from the workflow actions
    
    * Adding / Updating badges
    
    + Adding new badges
    + Making the existing one dynamic
    
    * style to flat
    
    * Update README.md
    
    * Readme update
    
    add more clear descriptions to what the  subcommands are for
    
    * code formatting
    
    Make changes to the code based on suggestion by
    + golangci-lint
    + goreportcard
    
    * fix the Uri to URI
    
    * Update badge label length
    faisaltheparttimecoder authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    e082eb6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    88ef547 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2021

  1. Go reportcard (#45)

    * improvement of code based on golint suggestion
    
    * Comment improvments based on goreport suggestions
    
    * more updates to comment based on goreportcard
    
    * Adding download badge
    
    * Add go report card badge
    faisaltheparttimecoder authored Jul 16, 2021
    Configuration menu
    Copy the full SHA
    dd60bac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1164f21 View commit details
    Browse the repository at this point in the history
  3. remove yml

    faisaltheparttimecoder committed Jul 16, 2021
    Configuration menu
    Copy the full SHA
    7aafdbc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c845b95 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    304375a View commit details
    Browse the repository at this point in the history
  6. WORKDIR and docker run instruction

    + Place the WORKDIR of the docker image to be $HOME
    + Update the readme to have instruction to mount a volume for the files to save
    faisaltheparttimecoder committed Jul 16, 2021
    Configuration menu
    Copy the full SHA
    a4b43cd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c7f7772 View commit details
    Browse the repository at this point in the history
  8. Adding clear instructions

    Adding more clear instruction for docker run
    faisaltheparttimecoder committed Jul 16, 2021
    Configuration menu
    Copy the full SHA
    c355ddb View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2021

  1. Docker shortcuts

    + update readme with steps on how to shorten docker command
    + Fix Typo related to URI help menu
    faisaltheparttimecoder committed Jul 17, 2021
    Configuration menu
    Copy the full SHA
    cbc9ab7 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2021

  1. Configuration menu
    Copy the full SHA
    c07fd43 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9221bf0 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2022

  1. Configuration menu
    Copy the full SHA
    212c531 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    666db6a View commit details
    Browse the repository at this point in the history
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.